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 f30b710d89e..ad47ca36158 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -142,7 +142,7 @@ def default_api_version(self): 'disks': '2020-12-01', 'disk_encryption_sets': '2020-12-01', 'disk_accesses': '2020-05-01', - 'snapshots': '2020-05-01', + 'snapshots': '2020-12-01', 'galleries': '2019-12-01', 'gallery_images': '2020-09-30', 'gallery_image_versions': '2019-12-01', diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py index 2345a4bf907..3986a72104c 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -30,7 +30,7 @@ from azure.cli.command_modules.monitor.actions import get_period_type -# pylint: disable=too-many-statements, too-many-branches, too-many-locals +# pylint: disable=too-many-statements, too-many-branches, too-many-locals, too-many-lines def load_arguments(self, _): # Model imports StorageAccountTypes = self.get_models('StorageAccountTypes') @@ -97,6 +97,12 @@ def load_arguments(self, _): help='Specify the scale-in policy (space delimited) that decides which virtual machines are chosen for removal when a Virtual Machine Scale Set is scaled-in.' ) + edge_zone_type = CLIArgumentType( + help='Name of edge zone extended location.', + min_api='2020-12-01', + is_preview=True + ) + # region MixedScopes for scope in ['vm', 'disk', 'snapshot', 'image', 'sig']: with self.argument_context(scope) as c: @@ -149,6 +155,7 @@ def load_arguments(self, _): c.argument('gallery_image_reference_lun', type=int, help='If the disk is created from an image\'s data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null') c.argument('logical_sector_size', type=int, help='Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.') c.argument('tier', help='Performance tier of the disk (e.g, P4, S10) as described here: https://azure.microsoft.com/en-us/pricing/details/managed-disks/. Does not apply to Ultra disks.') + c.argument('edge_zone', edge_zone_type) # endregion # region Snapshots @@ -158,6 +165,7 @@ def load_arguments(self, _): c.argument('sku', arg_type=snapshot_sku) c.argument('incremental', arg_type=get_three_state_flag(), min_api='2019-03-01', help='Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed') + c.argument('edge_zone', edge_zone_type) # endregion # region Images @@ -179,6 +187,7 @@ def load_arguments(self, _): help="Storage caching type for the image's data disk.") c.argument('hyper_v_generation', arg_type=hyper_v_gen_sku, min_api="2019-03-01", help='The hypervisor generation of the Virtual Machine created from the image.') c.ignore('source_virtual_machine', 'os_blob_uri', 'os_disk', 'os_snapshot', 'data_blob_uris', 'data_disks', 'data_snapshots') + c.argument('edge_zone', edge_zone_type, ) # endregion # region Image Templates @@ -727,6 +736,7 @@ def load_arguments(self, _): c.argument('secrets', multi_ids_type, help='One or many Key Vault secrets as JSON strings or files via `@{path}` containing `[{ "sourceVault": { "id": "value" }, "vaultCertificates": [{ "certificateUrl": "value", "certificateStore": "cert store name (only on windows)"}] }]`', type=file_type, completer=FilesCompleter()) c.argument('assign_identity', nargs='*', arg_group='Managed Service Identity', help="accept system or user assigned identities separated by spaces. Use '[system]' to refer system assigned identity, or a resource id to refer user assigned identity. Check out help for more examples") c.ignore('aux_subscriptions') + c.argument('edge_zone', edge_zone_type) with self.argument_context(scope, arg_group='Authentication') as c: c.argument('generate_ssh_keys', action='store_true', help='Generate SSH public and private key files if missing. The keys will be stored in the ~/.ssh directory') diff --git a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py index c4054fbf97b..7ca95836355 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py @@ -279,7 +279,7 @@ def build_vm_resource( # pylint: disable=too-many-locals, too-many-statements enable_agent=None, vmss=None, os_disk_encryption_set=None, data_disk_encryption_sets=None, specialized=None, encryption_at_host=None, dedicated_host_group=None, enable_auto_update=None, patch_mode=None, enable_hotpatching=None, platform_fault_domain=None, security_type=None, enable_secure_boot=None, - enable_vtpm=None, count=None): + enable_vtpm=None, count=None, edge_zone=None): os_caching = disk_info['os'].get('caching') @@ -528,8 +528,10 @@ def _build_storage_profile(): 'dependsOn': [], 'properties': vm_properties, } + if zone: vm['zones'] = zone + if count: vm['copy'] = { 'name': 'vmcopy', @@ -537,6 +539,10 @@ def _build_storage_profile(): 'count': count } vm['name'] = "[concat('{}', copyIndex())]".format(name) + + if edge_zone: + vm['extendedLocation'] = edge_zone + return vm @@ -760,7 +766,7 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision, specialized=None, os_disk_size_gb=None, encryption_at_host=None, host_group=None, max_batch_instance_percent=None, max_unhealthy_instance_percent=None, max_unhealthy_upgraded_instance_percent=None, pause_time_between_batches=None, - enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None): + enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None, edge_zone=None): # Build IP configuration ip_configuration = { @@ -1010,8 +1016,13 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision, }, 'properties': vmss_properties } + if zones: vmss['zones'] = zones + + if edge_zone: + vmss['extendedLocation'] = edge_zone + return vmss diff --git a/src/azure-cli/azure/cli/command_modules/vm/_validators.py b/src/azure-cli/azure/cli/command_modules/vm/_validators.py index c63687d8d74..3e0894b6b8c 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_validators.py @@ -1176,6 +1176,7 @@ def _resolve_role_id(cli_ctx, role, scope): def process_vm_create_namespace(cmd, namespace): validate_tags(namespace) _validate_location(cmd, namespace, namespace.zone, namespace.size) + validate_edge_zone(cmd, namespace) if namespace.count is not None: _validate_count(namespace) validate_asg_names_or_ids(cmd, namespace) @@ -1440,6 +1441,7 @@ def process_vmss_create_namespace(cmd, namespace): else: namespace.vm_sku = 'Standard_D1_v2' _validate_location(cmd, namespace, namespace.zones, namespace.vm_sku) + validate_edge_zone(cmd, namespace) validate_asg_names_or_ids(cmd, namespace) _validate_vm_create_storage_profile(cmd, namespace, for_scale_set=True) _validate_vm_vmss_create_vnet(cmd, namespace, for_scale_set=True) @@ -1496,6 +1498,7 @@ def validate_vmss_disk(cmd, namespace): def process_disk_or_snapshot_create_namespace(cmd, namespace): from msrestazure.azure_exceptions import CloudError validate_tags(namespace) + validate_edge_zone(cmd, namespace) if namespace.source: usage_error = 'usage error: --source {SNAPSHOT | DISK} | --source VHD_BLOB_URI [--source-storage-account-id ID]' try: @@ -1510,6 +1513,7 @@ def process_disk_or_snapshot_create_namespace(cmd, namespace): def process_image_create_namespace(cmd, namespace): from msrestazure.tools import parse_resource_id validate_tags(namespace) + validate_edge_zone(cmd, namespace) source_from_vm = False try: # try capturing from VM, a most common scenario @@ -1805,3 +1809,11 @@ def _validate_count(namespace): ] if any(param for param in banned_params): raise ValidationError('When --count is specified, {} are not allowed'.format(', '.join(params_str))) + + +def validate_edge_zone(cmd, namespace): # pylint: disable=unused-argument + if namespace.edge_zone: + namespace.edge_zone = { + 'name': namespace.edge_zone, + 'type': 'EdgeZone' + } 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 abd2a5ee5e4..32a1796d440 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -292,7 +292,7 @@ def create_managed_disk(cmd, resource_group_name, disk_name, location=None, # p image_reference=None, image_reference_lun=None, gallery_image_reference=None, gallery_image_reference_lun=None, network_access_policy=None, disk_access=None, logical_sector_size=None, - tier=None, enable_bursting=None): + tier=None, enable_bursting=None, edge_zone=None): from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -396,6 +396,8 @@ def create_managed_disk(cmd, resource_group_name, disk_name, location=None, # p disk.tier = tier if enable_bursting is not None: disk.bursting_enabled = enable_bursting + if edge_zone: + disk.extended_location = edge_zone client = _compute_client_factory(cmd.cli_ctx) return sdk_no_wait(no_wait, client.disks.begin_create_or_update, resource_group_name, disk_name, disk) @@ -465,7 +467,7 @@ def create_image(cmd, resource_group_name, name, source, os_type=None, data_disk os_blob_uri=None, data_blob_uris=None, os_snapshot=None, data_snapshots=None, os_disk=None, os_disk_caching=None, data_disks=None, data_disk_caching=None, - tags=None, zone_resilient=None): + tags=None, zone_resilient=None, edge_zone=None): ImageOSDisk, ImageDataDisk, ImageStorageProfile, Image, SubResource, OperatingSystemStateTypes = cmd.get_models( 'ImageOSDisk', 'ImageDataDisk', 'ImageStorageProfile', 'Image', 'SubResource', 'OperatingSystemStateTypes') @@ -507,6 +509,9 @@ def create_image(cmd, resource_group_name, name, source, os_type=None, data_disk if hyper_v_generation: image.hyper_v_generation = hyper_v_generation + if edge_zone: + image.extended_location = edge_zone + client = _compute_client_factory(cmd.cli_ctx) return client.images.begin_create_or_update(resource_group_name, name, image) @@ -532,7 +537,7 @@ def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size # below are generated internally from 'source' source_blob_uri=None, source_disk=None, source_snapshot=None, source_storage_account_id=None, hyper_v_generation=None, tags=None, no_wait=False, disk_encryption_set=None, - encryption_type=None, network_access_policy=None, disk_access=None): + encryption_type=None, network_access_policy=None, disk_access=None, edge_zone=None): from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -583,6 +588,8 @@ def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size snapshot.network_access_policy = network_access_policy if disk_access is not None: snapshot.disk_access_id = disk_access + if edge_zone: + snapshot.extended_location = edge_zone client = _compute_client_factory(cmd.cli_ctx) return sdk_no_wait(no_wait, client.snapshots.begin_create_or_update, resource_group_name, snapshot_name, snapshot) @@ -720,7 +727,7 @@ def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_ os_disk_encryption_set=None, data_disk_encryption_sets=None, specialized=None, encryption_at_host=None, enable_auto_update=None, patch_mode=None, ssh_key_name=None, enable_hotpatching=None, platform_fault_domain=None, security_type=None, enable_secure_boot=None, - enable_vtpm=None, count=None): + enable_vtpm=None, count=None, edge_zone=None): from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.core.util import random_string, hash_string from azure.cli.core.commands.arm import ArmTemplateBuilder @@ -914,7 +921,7 @@ def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_ encryption_at_host=encryption_at_host, dedicated_host_group=dedicated_host_group, enable_auto_update=enable_auto_update, patch_mode=patch_mode, enable_hotpatching=enable_hotpatching, platform_fault_domain=platform_fault_domain, security_type=security_type, enable_secure_boot=enable_secure_boot, - enable_vtpm=enable_vtpm, count=count) + enable_vtpm=enable_vtpm, count=count, edge_zone=edge_zone) vm_resource['dependsOn'] = vm_dependencies @@ -2421,7 +2428,7 @@ def create_vmss(cmd, vmss_name, resource_group_name, image=None, automatic_repairs_grace_period=None, specialized=None, os_disk_size_gb=None, encryption_at_host=None, host_group=None, max_batch_instance_percent=None, max_unhealthy_instance_percent=None, max_unhealthy_upgraded_instance_percent=None, pause_time_between_batches=None, - enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None): + enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None, edge_zone=None): from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.core.util import random_string, hash_string from azure.cli.core.commands.arm import ArmTemplateBuilder @@ -2660,7 +2667,7 @@ def _get_public_ip_address_allocation(value, sku): max_unhealthy_instance_percent=max_unhealthy_instance_percent, max_unhealthy_upgraded_instance_percent=max_unhealthy_upgraded_instance_percent, pause_time_between_batches=pause_time_between_batches, enable_cross_zone_upgrade=enable_cross_zone_upgrade, - prioritize_unhealthy_instances=prioritize_unhealthy_instances) + prioritize_unhealthy_instances=prioritize_unhealthy_instances, edge_zone=edge_zone) vmss_resource['dependsOn'] = vmss_dependencies diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_access.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_access.yaml index 5b2159e5b83..9035a604d54 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_access.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_access.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - -g -l -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: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01 response: @@ -26,7 +26,7 @@ interactions: \ \"location\": \"centraluseuap\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/87b809b8-626a-44c5-a0ab-1f8881f34b4f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8165b85b-f03b-47e1-aff5-6d2a866fa126?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -34,11 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:55:37 GMT + - Tue, 13 Apr 2021 07:28:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/87b809b8-626a-44c5-a0ab-1f8881f34b4f?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8165b85b-f03b-47e1-aff5-6d2a866fa126?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -67,24 +67,24 @@ interactions: ParameterSetName: - -g -l -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/centraluseuap/DiskOperations/87b809b8-626a-44c5-a0ab-1f8881f34b4f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8165b85b-f03b-47e1-aff5-6d2a866fa126?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T05:55:38.0801944+00:00\",\r\n \"endTime\": - \"2021-04-08T05:55:39.3101506+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"mydiskaccess\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\"type\":\"Microsoft.Compute/diskAccesses\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2021-04-08T05:55:38.0851541+00:00\"}}\r\n - \ },\r\n \"name\": \"87b809b8-626a-44c5-a0ab-1f8881f34b4f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:28:33.6254072+00:00\",\r\n \"endTime\": + \"2021-04-13T07:28:35.2175692+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"mydiskaccess\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\"type\":\"Microsoft.Compute/diskAccesses\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2021-04-13T07:28:33.665409+00:00\"}}\r\n + \ },\r\n \"name\": \"8165b85b-f03b-47e1-aff5-6d2a866fa126\"\r\n}" headers: cache-control: - no-cache content-length: - - '616' + - '615' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:08 GMT + - Tue, 13 Apr 2021 07:29:05 GMT expires: - '-1' pragma: @@ -101,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399985 status: code: 200 message: OK @@ -119,7 +119,7 @@ interactions: ParameterSetName: - -g -l -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/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01 response: @@ -127,16 +127,16 @@ interactions: string: "{\r\n \"name\": \"mydiskaccess\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": - \"2021-04-08T05:55:38.0851541+00:00\"\r\n }\r\n}" + \"2021-04-13T07:28:33.665409+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '436' + - '435' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:08 GMT + - Tue, 13 Apr 2021 07:29:05 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ 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/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses?api-version=2020-05-01 response: @@ -178,17 +178,17 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"timeCreated\": \"2021-04-08T05:55:38.0851541+00:00\"\r\n + \"Succeeded\",\r\n \"timeCreated\": \"2021-04-13T07:28:33.665409+00:00\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '501' + - '500' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:09 GMT + - Tue, 13 Apr 2021 07:29:07 GMT expires: - '-1' pragma: @@ -223,7 +223,7 @@ interactions: ParameterSetName: - -g -n --tags 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/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01 response: @@ -231,16 +231,16 @@ interactions: string: "{\r\n \"name\": \"mydiskaccess\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": - \"2021-04-08T05:55:38.0851541+00:00\"\r\n }\r\n}" + \"2021-04-13T07:28:33.665409+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '436' + - '435' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:11 GMT + - Tue, 13 Apr 2021 07:29:08 GMT expires: - '-1' pragma: @@ -274,14 +274,14 @@ interactions: - -g -n --tags User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_access_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T05:55:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:28:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -290,7 +290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:11 GMT + - Tue, 13 Apr 2021 07:29:08 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: ParameterSetName: - -g -n --tags 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/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01 response: @@ -332,7 +332,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2421ef6a-f64a-4238-ae6b-aded11e8d65f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/adf228e4-2656-4e12-8c6b-f74786cdc30d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -340,11 +340,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:14 GMT + - Tue, 13 Apr 2021 07:29:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2421ef6a-f64a-4238-ae6b-aded11e8d65f?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/adf228e4-2656-4e12-8c6b-f74786cdc30d?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -355,7 +355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -373,24 +373,24 @@ interactions: ParameterSetName: - -g -n --tags 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/centraluseuap/DiskOperations/2421ef6a-f64a-4238-ae6b-aded11e8d65f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/adf228e4-2656-4e12-8c6b-f74786cdc30d?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T05:56:15.0888728+00:00\",\r\n \"endTime\": - \"2021-04-08T05:56:15.1788745+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"mydiskaccess\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\"type\":\"Microsoft.Compute/diskAccesses\",\"location\":\"centraluseuap\",\"tags\":{\"tag1\":\"val1\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2021-04-08T05:55:38.0851541+00:00\"}}\r\n - \ },\r\n \"name\": \"2421ef6a-f64a-4238-ae6b-aded11e8d65f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:29:12.1005644+00:00\",\r\n \"endTime\": + \"2021-04-13T07:29:12.1955472+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"mydiskaccess\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\"type\":\"Microsoft.Compute/diskAccesses\",\"location\":\"centraluseuap\",\"tags\":{\"tag1\":\"val1\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2021-04-13T07:28:33.665409+00:00\"}}\r\n + \ },\r\n \"name\": \"adf228e4-2656-4e12-8c6b-f74786cdc30d\"\r\n}" headers: cache-control: - no-cache content-length: - - '639' + - '638' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:44 GMT + - Tue, 13 Apr 2021 07:29:42 GMT expires: - '-1' pragma: @@ -407,7 +407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996 + - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399983 status: code: 200 message: OK @@ -425,7 +425,7 @@ interactions: ParameterSetName: - -g -n --tags 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/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01 response: @@ -433,17 +433,17 @@ interactions: string: "{\r\n \"name\": \"mydiskaccess\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {\r\n \"tag1\": \"val1\"\r\n },\r\n \"properties\": {\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2021-04-08T05:55:38.0851541+00:00\"\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2021-04-13T07:28:33.665409+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '475' + - '474' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:45 GMT + - Tue, 13 Apr 2021 07:29:42 GMT expires: - '-1' pragma: @@ -476,7 +476,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/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01 response: @@ -484,17 +484,17 @@ interactions: string: "{\r\n \"name\": \"mydiskaccess\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {\r\n \"tag1\": \"val1\"\r\n },\r\n \"properties\": {\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2021-04-08T05:55:38.0851541+00:00\"\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2021-04-13T07:28:33.665409+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '475' + - '474' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:46 GMT + - Tue, 13 Apr 2021 07:29:43 GMT expires: - '-1' pragma: @@ -528,14 +528,14 @@ interactions: - -g -n --size-gb --network-access-policy --disk-access User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_access_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T05:55:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:28:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -544,7 +544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:47 GMT + - Tue, 13 Apr 2021 07:29:43 GMT expires: - '-1' pragma: @@ -578,7 +578,7 @@ interactions: ParameterSetName: - -g -n --size-gb --network-access-policy --disk-access 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/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk?api-version=2020-12-01 response: @@ -591,7 +591,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/eb8c70f3-1f87-4c97-9565-a74d4912e82f?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69ff7652-6c32-45fb-9a77-4a5f8f3fa47f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -599,11 +599,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:56 GMT + - Tue, 13 Apr 2021 07:29:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/eb8c70f3-1f87-4c97-9565-a74d4912e82f?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69ff7652-6c32-45fb-9a77-4a5f8f3fa47f?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -614,9 +614,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -634,13 +634,13 @@ interactions: ParameterSetName: - -g -n --size-gb --network-access-policy --disk-access 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/centraluseuap/DiskOperations/eb8c70f3-1f87-4c97-9565-a74d4912e82f?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69ff7652-6c32-45fb-9a77-4a5f8f3fa47f?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T05:56:56.2931486+00:00\",\r\n \"endTime\": - \"2021-04-08T05:56:56.6781959+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:29:51.6612241+00:00\",\r\n \"endTime\": + \"2021-04-13T07:29:52.0078384+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"mydisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -649,12 +649,12 @@ 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-08T05:56:56.2931486+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:29:51.6661968+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"0e8f2681-aafe-4d14-bfff-251561b454af\",\r\n \"diskAccessId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n + \ \"uniqueId\": \"a24f9470-650b-4fa2-888d-a6e7a514c42a\",\r\n \"diskAccessId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"networkAccessPolicy\": \"AllowPrivate\",\r\n \"tier\": \"P3\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"eb8c70f3-1f87-4c97-9565-a74d4912e82f\"\r\n}" + \ }\r\n}\r\n },\r\n \"name\": \"69ff7652-6c32-45fb-9a77-4a5f8f3fa47f\"\r\n}" headers: cache-control: - no-cache @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:58 GMT + - Tue, 13 Apr 2021 07:29:54 GMT expires: - '-1' pragma: @@ -680,7 +680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399982 status: code: 200 message: OK @@ -698,7 +698,7 @@ interactions: ParameterSetName: - -g -n --size-gb --network-access-policy --disk-access 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/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk?api-version=2020-12-01 response: @@ -710,10 +710,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-08T05:56:56.2931486+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:29:51.6661968+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"0e8f2681-aafe-4d14-bfff-251561b454af\",\r\n \"diskAccessId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n + \ \"uniqueId\": \"a24f9470-650b-4fa2-888d-a6e7a514c42a\",\r\n \"diskAccessId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"networkAccessPolicy\": \"AllowPrivate\",\r\n \"tier\": \"P3\"\r\n \ }\r\n}" headers: @@ -724,7 +724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:58 GMT + - Tue, 13 Apr 2021 07:29:54 GMT expires: - '-1' pragma: @@ -741,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119980 status: code: 200 message: OK @@ -759,7 +759,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/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk?api-version=2020-12-01 response: @@ -771,10 +771,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-08T05:56:56.2931486+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:29:51.6661968+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"0e8f2681-aafe-4d14-bfff-251561b454af\",\r\n \"diskAccessId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n + \ \"uniqueId\": \"a24f9470-650b-4fa2-888d-a6e7a514c42a\",\r\n \"diskAccessId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"networkAccessPolicy\": \"AllowPrivate\",\r\n \"tier\": \"P3\"\r\n \ }\r\n}" headers: @@ -785,7 +785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:56:59 GMT + - Tue, 13 Apr 2021 07:29:55 GMT expires: - '-1' pragma: @@ -802,7 +802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998 + - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119979 status: code: 200 message: OK @@ -821,14 +821,14 @@ interactions: - -g -n --size-gb --network-access-policy --disk-access User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_access_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T05:55:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:28:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -837,7 +837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:57:00 GMT + - Tue, 13 Apr 2021 07:29:55 GMT expires: - '-1' pragma: @@ -871,9 +871,9 @@ interactions: ParameterSetName: - -g -n --size-gb --network-access-policy --disk-access 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/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"sku\": @@ -884,7 +884,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/693abb00-d363-4626-9ccb-2bb9ab10fcc2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9df9fe32-4fa6-472e-940d-80fc158a1234?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -892,11 +892,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:57:10 GMT + - Tue, 13 Apr 2021 07:30:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/693abb00-d363-4626-9ccb-2bb9ab10fcc2?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9df9fe32-4fa6-472e-940d-80fc158a1234?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -907,9 +907,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -927,13 +927,13 @@ interactions: ParameterSetName: - -g -n --size-gb --network-access-policy --disk-access 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/centraluseuap/DiskOperations/693abb00-d363-4626-9ccb-2bb9ab10fcc2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9df9fe32-4fa6-472e-940d-80fc158a1234?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T05:57:10.1639703+00:00\",\r\n \"endTime\": - \"2021-04-08T05:57:10.6389928+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:30:03.9733962+00:00\",\r\n \"endTime\": + \"2021-04-13T07:30:04.2911798+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"mysnapshot\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"centraluseuap\",\r\n @@ -941,12 +941,12 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T05:57:10.1689751+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:30:03.9783472+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ed1a6b92-11bb-4841-bb74-153a313e74db\",\r\n - \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"691e5fa1-2462-475a-8143-69c8d2bcd20e\",\r\n + \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}\r\n },\r\n \"name\": - \"693abb00-d363-4626-9ccb-2bb9ab10fcc2\"\r\n}" + \"9df9fe32-4fa6-472e-940d-80fc158a1234\"\r\n}" headers: cache-control: - no-cache @@ -955,7 +955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:57:12 GMT + - Tue, 13 Apr 2021 07:30:06 GMT expires: - '-1' pragma: @@ -972,7 +972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399980 status: code: 200 message: OK @@ -990,9 +990,9 @@ interactions: ParameterSetName: - -g -n --size-gb --network-access-policy --disk-access 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/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"mysnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot\",\r\n @@ -1001,10 +1001,10 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T05:57:10.1689751+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:30:03.9783472+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ed1a6b92-11bb-4841-bb74-153a313e74db\",\r\n - \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"691e5fa1-2462-475a-8143-69c8d2bcd20e\",\r\n + \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}" headers: cache-control: @@ -1014,7 +1014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:57:12 GMT + - Tue, 13 Apr 2021 07:30:06 GMT expires: - '-1' pragma: @@ -1031,7 +1031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119995 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119977 status: code: 200 message: OK @@ -1049,9 +1049,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/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"mysnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot\",\r\n @@ -1060,10 +1060,10 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T05:57:10.1689751+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:30:03.9783472+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ed1a6b92-11bb-4841-bb74-153a313e74db\",\r\n - \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"691e5fa1-2462-475a-8143-69c8d2bcd20e\",\r\n + \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n \ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}" headers: cache-control: @@ -1073,7 +1073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:57:14 GMT + - Tue, 13 Apr 2021 07:30:07 GMT expires: - '-1' pragma: @@ -1090,7 +1090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119994 + - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119974 status: code: 200 message: OK @@ -1110,7 +1110,7 @@ interactions: ParameterSetName: - -g -n --yes 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/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk?api-version=2020-12-01 response: @@ -1118,17 +1118,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8a07ce47-4629-4568-9a56-2f3b22e5a41a?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/824d074f-3953-443b-9219-1d812805b310?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 05:57:16 GMT + - Tue, 13 Apr 2021 07:30:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8a07ce47-4629-4568-9a56-2f3b22e5a41a?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/824d074f-3953-443b-9219-1d812805b310?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1139,7 +1139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23999 + - Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23997 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1159,23 +1159,23 @@ interactions: ParameterSetName: - -g -n --yes 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/centraluseuap/DiskOperations/8a07ce47-4629-4568-9a56-2f3b22e5a41a?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/824d074f-3953-443b-9219-1d812805b310?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T05:57:16.9841795+00:00\",\r\n \"endTime\": - \"2021-04-08T05:57:17.2597981+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"8a07ce47-4629-4568-9a56-2f3b22e5a41a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:30:10.704308+00:00\",\r\n \"endTime\": + \"2021-04-13T07:30:10.9192559+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"824d074f-3953-443b-9219-1d812805b310\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:57:46 GMT + - Tue, 13 Apr 2021 07:30:40 GMT expires: - '-1' pragma: @@ -1192,7 +1192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399990 + - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399977 status: code: 200 message: OK @@ -1212,25 +1212,25 @@ 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: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-12-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/49ff0e0b-90d0-48e5-9287-cd32be40cc9e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/07ab682e-e0ca-4ee7-8646-0786816720a3?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 05:57:50 GMT + - Tue, 13 Apr 2021 07:30:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/49ff0e0b-90d0-48e5-9287-cd32be40cc9e?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/07ab682e-e0ca-4ee7-8646-0786816720a3?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1241,7 +1241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteDisks3Min;2998,Microsoft.Compute/DeleteDisks30Min;23998 + - Microsoft.Compute/DeleteDisks3Min;2998,Microsoft.Compute/DeleteDisks30Min;23996 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1261,23 +1261,23 @@ 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/centraluseuap/DiskOperations/49ff0e0b-90d0-48e5-9287-cd32be40cc9e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/07ab682e-e0ca-4ee7-8646-0786816720a3?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T05:57:50.16187+00:00\",\r\n \"endTime\": - \"2021-04-08T05:57:50.4218701+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"49ff0e0b-90d0-48e5-9287-cd32be40cc9e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:30:43.4858849+00:00\",\r\n \"endTime\": + \"2021-04-13T07:30:43.7515826+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"07ab682e-e0ca-4ee7-8646-0786816720a3\"\r\n}" headers: cache-control: - no-cache content-length: - - '182' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:58:20 GMT + - Tue, 13 Apr 2021 07:31:13 GMT expires: - '-1' pragma: @@ -1294,7 +1294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988 + - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399975 status: code: 200 message: OK @@ -1314,7 +1314,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: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01 response: @@ -1322,7 +1322,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e0293536-377c-4ddf-8d7a-6e1d14f5f778?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/09f0b6fe-0c64-4420-9301-28588a7adef4?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1330,11 +1330,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:58:23 GMT + - Tue, 13 Apr 2021 07:31:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e0293536-377c-4ddf-8d7a-6e1d14f5f778?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/09f0b6fe-0c64-4420-9301-28588a7adef4?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1363,14 +1363,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/centraluseuap/DiskOperations/e0293536-377c-4ddf-8d7a-6e1d14f5f778?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/09f0b6fe-0c64-4420-9301-28588a7adef4?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T05:58:23.2589267+00:00\",\r\n \"endTime\": - \"2021-04-08T05:58:23.4338766+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e0293536-377c-4ddf-8d7a-6e1d14f5f778\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:31:16.3472539+00:00\",\r\n \"endTime\": + \"2021-04-13T07:31:16.5822785+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"09f0b6fe-0c64-4420-9301-28588a7adef4\"\r\n}" headers: cache-control: - no-cache @@ -1379,7 +1379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:58:53 GMT + - Tue, 13 Apr 2021 07:31:46 GMT expires: - '-1' pragma: @@ -1396,7 +1396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399986 + - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399973 status: code: 200 message: OK @@ -1414,7 +1414,7 @@ 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/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses?api-version=2020-05-01 response: @@ -1428,7 +1428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 05:58:54 GMT + - Tue, 13 Apr 2021 07:31:46 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_encryption_set_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_encryption_set_snapshot.yaml index bfb65e5b113..41f3c3e1249 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_encryption_set_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_encryption_set_snapshot.yaml @@ -14,14 +14,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/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"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:06:34 GMT + - Tue, 13 Apr 2021 07:24:19 GMT expires: - '-1' pragma: @@ -75,19 +75,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 08 Apr 2021 03:06:35 GMT + - Tue, 13 Apr 2021 07:24:21 GMT duration: - - '2459008' + - '4286704' expires: - '-1' ocp-aad-diagnostics-server-name: - - 5DY/KckzC7oMLZXzRXRscYjp1lPh7/559CbGvcrhIJ8= + - 7RoRr865WHF4i/HNaMTyIVO1V0OMqDqTAX7f35Kommc= ocp-aad-session-key: - - i04sgNx0o0v6AqCYqGw8MckATfsDag5VXJMkYb9QAVkx4Z4lL6YJ8_PoeX0A2AotJ_3QoXIZfwE1_JDV1g6IYUatX2qqpnLkktnofQX3A3Y158Lj_xuoydmeyYfH02K3.2nJfq9b0ga0z8FAsc4rmxjaXubmXDuA_C9r25oAG3u0 + - s5oRFQtsSVM5COKFDKRJSOLXHBk2k01mNTNgAMZpD7UL_l3HF9rHGi5s1ZU03JJT_ASeBaXG4S5el0d0VF_RWOa1wzVkESmO9_5UIGeppmVdhyu9xFBiQIwLLl6jQINW.itILQ4Px0b2R2B3uSonNjYZCrWI6rlVnjmj1OIhpiBo pragma: - no-cache request-id: - - 900ba536-f9bc-44bc-880c-d1eb04817835 + - ccd11c22-08ab-4404-ad4d-3eb282dec718 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -129,7 +129,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01 response: @@ -143,7 +143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:06:45 GMT + - Tue, 13 Apr 2021 07:24:31 GMT expires: - '-1' pragma: @@ -161,9 +161,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: @@ -183,7 +183,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01 response: @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:16 GMT + - Tue, 13 Apr 2021 07:25:01 GMT expires: - '-1' pragma: @@ -215,7 +215,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: @@ -253,7 +253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:17 GMT + - Tue, 13 Apr 2021 07:25:02 GMT expires: - '-1' pragma: @@ -298,7 +298,7 @@ interactions: uri: https://vault4-000002.vault.azure.net/keys/key-000003/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"pQDqxf4uA3uG6HWMVLtlukN9fAmt0scBvfq2btAmjfVES7GBrRI5TgbTv0-4lUuf5m2n0NyC_Zpftt__uAhNjMEB0rGfws1pnJh9UgsIc6yzVoz6L3u2etf_Q8Fi5C7nHp5OIxRwsbb3GAbBKe5DaDuBIHBQzAQtqz1kFXZMrvcIf1Jvrau3c6bWzYmPDapceeu8hmjGudpjoIWr-mXruiQKuQ97QHyqvY0cuSV2Nw3MBMBHg8P6-nvvQZcgy4NDJD6Y3_mbyBwrMsMfLfljNo2E9Icm6VNoOe6CLWCZfQ0t8TPZdWllpsaHuStREqDvdA9AwiDRLitBimQ5JOJ6LQ","e":"AQAB"},"attributes":{"enabled":true,"created":1617851238,"updated":1617851238,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"qzP6KVQ70X9m9wdl90WQgiyJUdj_l0FqyIxRM6ovfY5exoie_J7z_Jn-aOlyq5XzJH4hFNTIhwdrQqKVbKSo2p8h5tZNKSlvOh0LRyv_L52XwLZWGAqcoNjlNo8iYbs02cE_9NYV7S_u0jjBRxFD3lqetKBn0ANgQa79140Qq3dQAbFQ6TtJyuxblFx3P_eNoJOIwknJ-JgT_HTIAEQ0aNh-H1ruPnojG8mwbAeJFXB-eKYz15JLs-CaNB-1_0CZBL4-wxzBQ80Mj4sl0BwpEoYYv2aPLEkxCJCgvcg07rf2u_iI_e_Asfbj9V5Bp-uH7o4nm4lRnRhWb9rD6D-TLQ","e":"AQAB"},"attributes":{"enabled":true,"created":1618298704,"updated":1618298704,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -307,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:18 GMT + - Tue, 13 Apr 2021 07:25:04 GMT expires: - '-1' pragma: @@ -342,14 +342,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/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -358,7 +358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:18 GMT + - Tue, 13 Apr 2021 07:25:05 GMT expires: - '-1' pragma: @@ -375,7 +375,7 @@ interactions: - request: body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002"}, - "keyUrl": "https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad"}}}' + "keyUrl": "https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4"}}}' headers: Accept: - application/json @@ -392,7 +392,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004?api-version=2020-12-01 response: @@ -400,11 +400,11 @@ interactions: string: "{\r\n \"location\": \"westcentralus\",\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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n - \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n + \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\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/westcentralus/DiskOperations/716c8b96-e622-407f-b509-510e732ca710?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ccd60b9-0f03-43b3-9f68-09081215540e?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -412,11 +412,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:28 GMT + - Tue, 13 Apr 2021 07:25:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/716c8b96-e622-407f-b509-510e732ca710?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ccd60b9-0f03-43b3-9f68-09081215540e?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -427,9 +427,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostDiskEncryptionSet3Min;97,Microsoft.Compute/HighCostDiskEncryptionSet30Min;297 + - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 202 message: Accepted @@ -447,24 +447,24 @@ 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/westcentralus/DiskOperations/716c8b96-e622-407f-b509-510e732ca710?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ccd60b9-0f03-43b3-9f68-09081215540e?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:07:28.9850122+00:00\",\r\n \"endTime\": - \"2021-04-08T03:07:29.0318635+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"westcentralus\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"},\"keyUrl\":\"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n - \ },\r\n \"name\": \"716c8b96-e622-407f-b509-510e732ca710\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:25:18.6097459+00:00\",\r\n \"endTime\": + \"2021-04-13T07:25:18.703511+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"westcentralus\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"8b6cfac3-316e-463b-a179-dc031dab05eb\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"},\"keyUrl\":\"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n + \ },\r\n \"name\": \"1ccd60b9-0f03-43b3-9f68-09081215540e\"\r\n}" headers: cache-control: - no-cache content-length: - - '1137' + - '1136' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:59 GMT + - Tue, 13 Apr 2021 07:25:48 GMT expires: - '-1' pragma: @@ -481,7 +481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998 status: code: 200 message: OK @@ -499,7 +499,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004?api-version=2020-12-01 response: @@ -507,10 +507,10 @@ interactions: string: "{\r\n \"name\": \"des1-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"westcentralus\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"8b6cfac3-316e-463b-a179-dc031dab05eb\",\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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n - \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n + \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -521,7 +521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:59 GMT + - Tue, 13 Apr 2021 07:25:48 GMT expires: - '-1' pragma: @@ -538,7 +538,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 @@ -556,7 +556,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004?api-version=2020-12-01 response: @@ -564,10 +564,10 @@ interactions: string: "{\r\n \"name\": \"des1-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"westcentralus\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"8b6cfac3-316e-463b-a179-dc031dab05eb\",\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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n - \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n + \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -578,7 +578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:01 GMT + - Tue, 13 Apr 2021 07:25:49 GMT expires: - '-1' pragma: @@ -595,7 +595,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119976 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996 status: code: 200 message: OK @@ -614,14 +614,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/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -630,7 +630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:01 GMT + - Tue, 13 Apr 2021 07:25:49 GMT expires: - '-1' pragma: @@ -647,7 +647,7 @@ interactions: - request: body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002"}, - "keyUrl": "https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad"}}}' + "keyUrl": "https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4"}}}' headers: Accept: - application/json @@ -664,7 +664,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005?api-version=2020-12-01 response: @@ -672,11 +672,11 @@ interactions: string: "{\r\n \"location\": \"westcentralus\",\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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n - \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n + \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\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/westcentralus/DiskOperations/4edc225c-5e11-4849-86a1-6c0ebdde0d97?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d247ef97-395a-41bf-b573-0dbb6ed93369?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -684,11 +684,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:12 GMT + - Tue, 13 Apr 2021 07:26:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/4edc225c-5e11-4849-86a1-6c0ebdde0d97?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d247ef97-395a-41bf-b573-0dbb6ed93369?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -699,9 +699,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostDiskEncryptionSet3Min;96,Microsoft.Compute/HighCostDiskEncryptionSet30Min;295 + - Microsoft.Compute/HighCostDiskEncryptionSet3Min;98,Microsoft.Compute/HighCostDiskEncryptionSet30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 202 message: Accepted @@ -719,15 +719,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/westcentralus/DiskOperations/4edc225c-5e11-4849-86a1-6c0ebdde0d97?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d247ef97-395a-41bf-b573-0dbb6ed93369?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:08:12.3127872+00:00\",\r\n \"endTime\": - \"2021-04-08T03:08:12.3596878+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"des2-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"westcentralus\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"c8f2be4d-689e-472e-b8e8-e5f05fc61984\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"},\"keyUrl\":\"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n - \ },\r\n \"name\": \"4edc225c-5e11-4849-86a1-6c0ebdde0d97\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:26:01.7816495+00:00\",\r\n \"endTime\": + \"2021-04-13T07:26:01.8441573+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"des2-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"westcentralus\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"dd3040e5-355f-4e0e-a9ab-1ce8162359ad\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"},\"keyUrl\":\"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n + \ },\r\n \"name\": \"d247ef97-395a-41bf-b573-0dbb6ed93369\"\r\n}" headers: cache-control: - no-cache @@ -736,7 +736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:42 GMT + - Tue, 13 Apr 2021 07:26:32 GMT expires: - '-1' pragma: @@ -753,7 +753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399981 + - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996 status: code: 200 message: OK @@ -771,7 +771,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005?api-version=2020-12-01 response: @@ -779,10 +779,10 @@ interactions: string: "{\r\n \"name\": \"des2-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"westcentralus\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"c8f2be4d-689e-472e-b8e8-e5f05fc61984\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"dd3040e5-355f-4e0e-a9ab-1ce8162359ad\",\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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n - \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n + \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -793,7 +793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:42 GMT + - Tue, 13 Apr 2021 07:26:32 GMT expires: - '-1' pragma: @@ -810,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14974,Microsoft.Compute/LowCostGet30Min;119970 + - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119993 status: code: 200 message: OK @@ -828,7 +828,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005?api-version=2020-12-01 response: @@ -836,10 +836,10 @@ interactions: string: "{\r\n \"name\": \"des2-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"westcentralus\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"c8f2be4d-689e-472e-b8e8-e5f05fc61984\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"dd3040e5-355f-4e0e-a9ab-1ce8162359ad\",\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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n - \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n + \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -850,7 +850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:43 GMT + - Tue, 13 Apr 2021 07:26:33 GMT expires: - '-1' pragma: @@ -867,7 +867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14973,Microsoft.Compute/LowCostGet30Min;119969 + - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119992 status: code: 200 message: OK @@ -885,21 +885,21 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_hxomxn3sszztb6w7ylmqdj372xpfigsh7mzbcxi/providers/Microsoft.KeyVault/vaults/vault1-hltrn32odlgql","name":"vault1-hltrn32odlgql","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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: - - '2307' + - '2430' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:45 GMT + - Tue, 13 Apr 2021 07:26:34 GMT expires: - '-1' pragma: @@ -927,7 +927,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01 response: @@ -941,7 +941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:46 GMT + - Tue, 13 Apr 2021 07:26:36 GMT expires: - '-1' pragma: @@ -959,7 +959,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: @@ -975,7 +975,7 @@ 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": "fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29", + {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "8b6cfac3-316e-463b-a179-dc031dab05eb", "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://vault4-000002.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' @@ -995,12 +995,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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":"8b6cfac3-316e-463b-a179-dc031dab05eb","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1009,7 +1009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:47 GMT + - Tue, 13 Apr 2021 07:26:36 GMT expires: - '-1' pragma: @@ -1027,9 +1027,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: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -1049,21 +1049,21 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_hxomxn3sszztb6w7ylmqdj372xpfigsh7mzbcxi/providers/Microsoft.KeyVault/vaults/vault1-hltrn32odlgql","name":"vault1-hltrn32odlgql","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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: - - '2307' + - '2430' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:47 GMT + - Tue, 13 Apr 2021 07:26:36 GMT expires: - '-1' pragma: @@ -1091,12 +1091,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: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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":"8b6cfac3-316e-463b-a179-dc031dab05eb","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1105,7 +1105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:48 GMT + - Tue, 13 Apr 2021 07:26:38 GMT expires: - '-1' pragma: @@ -1123,7 +1123,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: @@ -1139,9 +1139,9 @@ 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": "fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29", + {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "8b6cfac3-316e-463b-a179-dc031dab05eb", "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}, {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "objectId": "c8f2be4d-689e-472e-b8e8-e5f05fc61984", "permissions": {"keys": + "objectId": "dd3040e5-355f-4e0e-a9ab-1ce8162359ad", "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://vault4-000002.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' @@ -1161,12 +1161,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","permissions":{"keys":["get","unwrapKey","wrapKey"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"c8f2be4d-689e-472e-b8e8-e5f05fc61984","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","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":"8b6cfac3-316e-463b-a179-dc031dab05eb","permissions":{"keys":["get","unwrapKey","wrapKey"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"dd3040e5-355f-4e0e-a9ab-1ce8162359ad","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1175,7 +1175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:49 GMT + - Tue, 13 Apr 2021 07:26:38 GMT expires: - '-1' pragma: @@ -1193,7 +1193,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-ms-ratelimit-remaining-subscription-writes: - '1196' x-powered-by: @@ -1216,7 +1216,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 @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:04 GMT + - Tue, 13 Apr 2021 07:26:54 GMT expires: - '-1' pragma: @@ -1266,11 +1266,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%27fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%278b6cfac3-316e-463b-a179-dc031dab05eb%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -1286,19 +1286,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 08 Apr 2021 03:09:05 GMT + - Tue, 13 Apr 2021 07:26:55 GMT duration: - - '2324305' + - '3805238' expires: - '-1' ocp-aad-diagnostics-server-name: - - Xlgv9dz5vIr8di0889LWEd5JNMHvSiwPTMrD+o9K2xg= + - gNskm5ItSJmEj0BN5oH+0Tr7DEY2sjymkrW1Eml4ng0= ocp-aad-session-key: - - 4XhsRwTscCa4VTlkL67QMmKmCC0MQtPavxGXSLRWuj8kyk9T5pfdAVBEhGyZBka4F7ILnLKs0BI3RDmEzK2LzhyYBOlC1dmTlCLXpsPcAH8KlTDiBNVNpIT-rjmbp11n.LUxPpuBZGk8MAxfeXB_hDzktb3lfgorXRMUsmG7qQ0g + - EWSNY18CgcYufQxILtOQpL5fKgFszZ9m7aEw6-QSjmlcCUIS8_bJ_BPyguysu7IRKveLe9lbGC9TsZx-0Gr6J4LRpxWXBUVBSR1Qu1YHi0WZLpr0uGwGw-QwEH03agbh.0rfinH8JG7MsBUGyKUR5tkXKzqjVgvltEzjiDgpKcSE pragma: - no-cache request-id: - - 04b28565-83cb-4164-b0b6-39b4a4076800 + - 8a1d9dcf-18e4-41b3-96b9-38478f8ef1e2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1313,7 +1313,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["8b6cfac3-316e-463b-a179-dc031dab05eb"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1332,14 +1332,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":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004"],"appDisplayName":null,"appId":"2804d688-47eb-40d5-99a4-cc75882d627e","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000004","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"44007AA0F4D653EA011BDADF2390D7456C15DD76","endDate":"2021-07-07T03:02:00Z","keyId":"50a0929a-f0da-4162-9705-5ce0e78d2249","startDate":"2021-04-08T03:02: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":["2804d688-47eb-40d5-99a4-cc75882d627e","https://identity.azure.net/RG8cPMrr4n/DMEBUidjpxalAjUw4oE0gaEK+UH0KZZw="],"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":"8b6cfac3-316e-463b-a179-dc031dab05eb","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004"],"appDisplayName":null,"appId":"7faa153e-cdb4-4fa4-a789-1fa3310bcebd","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000004","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"73ABCB7CE99615EED416BA61779E8BEEB1AF9D55","endDate":"2021-07-12T07:20:00Z","keyId":"2e361432-afc9-498d-90f6-e7ec0b930198","startDate":"2021-04-13T07:20: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":["7faa153e-cdb4-4fa4-a789-1fa3310bcebd","https://identity.azure.net/bj8lDqIBGFSkExGQylwItmOZQ8IEfLZdsJMuX4T5Jiw="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1352,19 +1352,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 08 Apr 2021 03:09:06 GMT + - Tue, 13 Apr 2021 07:26:55 GMT duration: - - '2647954' + - '3727371' expires: - '-1' ocp-aad-diagnostics-server-name: - - 0ne6VVkYZRIaH+6HTKLZMwf0y9fUX539S95rqwV8csQ= + - tDnzyJl0rbvwKg1ePY2VwE8JZRca3iMn7k9TMUtJqrk= ocp-aad-session-key: - - UR-JBHtgtU6UHwCcfInkC0a3mbMOdzxvkNzh1NowB7ymrshHvoSn8917xWcuCUTSK1kyAcUl41Fj09nEp_5zxpt-PRjUfvK-K18jzBOzdx81nriT0Cw8yWFvQXiJlHXR.8ghx2cfMDAMlF5phlEvdo87NKUCzfQhS6kR-EonJO9Y + - KeWeo0gdUrKf3zXK3stU_Srq8wB6kiC5fSavattLFA4_R9hdHgaj4YwfW0HSH52dcoCn36bh5tZk7u8jktRlj65Fvyts8EmVcx33xmzF5QwbG8IZmB1BZd_DgS0GhcTL.wZ9Mi5FYhQ6Ym2RcR-MQmgXkUmijH2Wi_l7uKVJ0yuA pragma: - no-cache request-id: - - 8d394f2d-8dce-49be-a6a8-54d75f7cab80 + - 875b42a2-4a6d-40ab-b150-0c61f50f1489 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1380,7 +1380,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29"}}' + "principalId": "8b6cfac3-316e-463b-a179-dc031dab05eb"}}' headers: Accept: - application/json @@ -1400,14 +1400,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/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":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T03:09:06.7456176Z","updatedOn":"2021-04-08T03:09:07.5867260Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/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":"8b6cfac3-316e-463b-a179-dc031dab05eb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T07:26:56.4436707Z","updatedOn":"2021-04-13T07:26:56.9156380Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -1416,7 +1416,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:11 GMT + - Tue, 13 Apr 2021 07:27:00 GMT expires: - '-1' pragma: @@ -1428,7 +1428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1447,7 +1447,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 @@ -1464,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:11 GMT + - Tue, 13 Apr 2021 07:27:01 GMT expires: - '-1' pragma: @@ -1497,11 +1497,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%27c8f2be4d-689e-472e-b8e8-e5f05fc61984%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27dd3040e5-355f-4e0e-a9ab-1ce8162359ad%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -1517,19 +1517,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 08 Apr 2021 03:09:13 GMT + - Tue, 13 Apr 2021 07:27:02 GMT duration: - - '2414649' + - '3564619' expires: - '-1' ocp-aad-diagnostics-server-name: - - vt8ZuMY4ZxP3ImqFg/6t9hvuc1YhQwzZOI9ZNyhW7HY= + - FwnLzu0CDNpH11piVVZfAI02/FV6uqUU3tQShmIvs9Y= ocp-aad-session-key: - - gMJN0YVzBnlZJ8KAsdyxV3441lzh7V00YBVI5PqCzhzBh-qFTRxx-qn40DXopQMYQ2o-BPKpK-yptiurP1ZsKNietNNPd-hZVGKph7nonNa5vUqecJ9g7jr1e-GXJR3n.i0-9QZlCW0IW7awbLQ692Otv7aCfOCWww7WCB2m0xcs + - oY-9X-yqtS7yljYHeoUEr7Z8G4GAdSNYRfnUeRda6fqFQJ8cqMI7jfeJ7_XLAcm6iiNvQw13y1tHHPBVRWPx_hBNLyq0u9Nf0HJ8BlrjW9Gy2KrE6fZMbkk-JbH61CKx.N7i8SwxbAqGn2DQ1wrreBQkeGOtCsYutA-sH0eNk2p4 pragma: - no-cache request-id: - - b7e9d2ed-eb7e-4318-a4cf-9ba3c3d11f3a + - 8f31fb34-d8f1-4934-85ee-d7c78799f97f strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1544,7 +1544,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["c8f2be4d-689e-472e-b8e8-e5f05fc61984"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["dd3040e5-355f-4e0e-a9ab-1ce8162359ad"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1563,14 +1563,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":"c8f2be4d-689e-472e-b8e8-e5f05fc61984","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005"],"appDisplayName":null,"appId":"30eea131-cbb1-4b26-b861-1b38c471362f","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des2-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"017777B9D19456C4FC28FD45AC32CD7C16EF7F90","endDate":"2021-07-07T03:03:00Z","keyId":"3582800c-4d96-4f96-b9b4-1366c44427dd","startDate":"2021-04-08T03:03:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["30eea131-cbb1-4b26-b861-1b38c471362f","https://identity.azure.net/40XOVPGGUM/vXZvXVXa9pA35e4pdICE4mn44d26mCD4="],"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":"dd3040e5-355f-4e0e-a9ab-1ce8162359ad","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005"],"appDisplayName":null,"appId":"1f19d2c8-f197-444a-a5d6-568d01627c90","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des2-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"57FA9AD61A3B07D294AED83E1251710E8FF036AC","endDate":"2021-07-12T07:20:00Z","keyId":"b22749d5-f917-4d66-a602-56460be9ea2d","startDate":"2021-04-13T07:20: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":["1f19d2c8-f197-444a-a5d6-568d01627c90","https://identity.azure.net/75iCkf0akO6R8NrSA5e+QtE3IZKUyXxifNftQ+naU4I="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1583,19 +1583,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 08 Apr 2021 03:09:13 GMT + - Tue, 13 Apr 2021 07:27:02 GMT duration: - - '2682609' + - '3864815' expires: - '-1' ocp-aad-diagnostics-server-name: - - wgm8G2/1p+ONlu8utNSc/MHfwmdCjZ/ViRDYETLSoGg= + - dVmDM5ta5usG3TsBZSZZ/UM+53m+p/jp2nq/KXLkGVQ= ocp-aad-session-key: - - 0JKslhtL7Q_xsnjdjhmnQ4ZzwU7RqLdnHwslY-F8Qfus7_hRNViIaowt0swfqy5hSLE6Spu62gnCsyqvK8VrxTGEsj2johxH0btPTZQKnDy06xRNygbxOc_-mKguEVo1.2ciInIyK0v7JjOoHYn1PPo5Yl24DUAZJaFUInsmAaf4 + - 5jZ6JjkKK0sQol43Dot5cr6oH_9i1ZMy-Rijz1_IupKEoU48LWSO5dm6GQ6wvkADIcGHZw00dp7IFCo_sCrpBfIW4OlZKSa4bx7Roa5PzSQ4zfX5Yxm0grlb-jV8ZFYn._ftbC1h11meG1sbPWmfH39HBTuw1Pvq84xm9265baaE pragma: - no-cache request-id: - - 3a3a4436-0ce4-4f3b-9f06-56a4d33a37f1 + - 983875ea-e5ba-4a6e-a3e3-9121b425e30e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1611,7 +1611,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "c8f2be4d-689e-472e-b8e8-e5f05fc61984"}}' + "principalId": "dd3040e5-355f-4e0e-a9ab-1ce8162359ad"}}' headers: Accept: - application/json @@ -1631,14 +1631,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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?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":"c8f2be4d-689e-472e-b8e8-e5f05fc61984","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T03:09:14.0547743Z","updatedOn":"2021-04-08T03:09:38.1721065Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"dd3040e5-355f-4e0e-a9ab-1ce8162359ad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T07:27:03.1744884Z","updatedOn":"2021-04-13T07:27:05.0769782Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -1647,7 +1647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:42 GMT + - Tue, 13 Apr 2021 07:27:08 GMT expires: - '-1' pragma: @@ -1659,7 +1659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -1678,14 +1678,14 @@ interactions: - -g -n --encryption-type --disk-encryption-set --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1694,7 +1694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:57 GMT + - Tue, 13 Apr 2021 07:27:23 GMT expires: - '-1' pragma: @@ -1729,9 +1729,9 @@ interactions: ParameterSetName: - -g -n --encryption-type --disk-encryption-set --size-gb 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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": @@ -1743,7 +1743,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/46a8eeb8-dd28-4afa-8bf2-8de0b55ae2f2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e623e588-ac47-4d99-82b9-b1e90c1cd30f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1751,11 +1751,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:05 GMT + - Tue, 13 Apr 2021 07:27:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/46a8eeb8-dd28-4afa-8bf2-8de0b55ae2f2?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e623e588-ac47-4d99-82b9-b1e90c1cd30f?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1786,13 +1786,13 @@ interactions: ParameterSetName: - -g -n --encryption-type --disk-encryption-set --size-gb 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/westcentralus/DiskOperations/46a8eeb8-dd28-4afa-8bf2-8de0b55ae2f2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e623e588-ac47-4d99-82b9-b1e90c1cd30f?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:10:05.4059246+00:00\",\r\n \"endTime\": - \"2021-04-08T03:10:07.7027591+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:27:31.7853715+00:00\",\r\n \"endTime\": + \"2021-04-13T07:27:34.5666533+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshot1-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n @@ -1800,12 +1800,12 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithCustomerKey\",\r\n - \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:05.8277777+00:00\",\r\n + \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\"\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:32.9416205+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"755ae7f8-bfef-48d9-aef5-01601fb0cc95\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"6c3309eb-394d-4671-b7f4-04e1d2db0bfe\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"46a8eeb8-dd28-4afa-8bf2-8de0b55ae2f2\"\r\n}" + \"e623e588-ac47-4d99-82b9-b1e90c1cd30f\"\r\n}" headers: cache-control: - no-cache @@ -1814,7 +1814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:07 GMT + - Tue, 13 Apr 2021 07:27:34 GMT expires: - '-1' pragma: @@ -1831,7 +1831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399978 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 status: code: 200 message: OK @@ -1849,9 +1849,9 @@ interactions: ParameterSetName: - -g -n --encryption-type --disk-encryption-set --size-gb 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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"snapshot1-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006\",\r\n @@ -1860,10 +1860,10 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithCustomerKey\",\r\n - \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:05.8277777+00:00\",\r\n + \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\"\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:32.9416205+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"755ae7f8-bfef-48d9-aef5-01601fb0cc95\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"6c3309eb-394d-4671-b7f4-04e1d2db0bfe\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1873,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:07 GMT + - Tue, 13 Apr 2021 07:27:35 GMT expires: - '-1' pragma: @@ -1890,7 +1890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119964 + - Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119991 status: code: 200 message: OK @@ -1909,14 +1909,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1925,7 +1925,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:09 GMT + - Tue, 13 Apr 2021 07:27:35 GMT expires: - '-1' pragma: @@ -1958,9 +1958,9 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": @@ -1970,7 +1970,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/407f2aea-4acf-40f6-8ee0-92deedf81555?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3f0e2731-9156-4fcf-9be8-c9e76e9f1cb5?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1978,11 +1978,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:14 GMT + - Tue, 13 Apr 2021 07:27:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/407f2aea-4acf-40f6-8ee0-92deedf81555?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3f0e2731-9156-4fcf-9be8-c9e76e9f1cb5?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2013,13 +2013,13 @@ interactions: ParameterSetName: - -g -n --size-gb 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/westcentralus/DiskOperations/407f2aea-4acf-40f6-8ee0-92deedf81555?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3f0e2731-9156-4fcf-9be8-c9e76e9f1cb5?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n \"endTime\": - \"2021-04-08T03:10:16.0308415+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:27:42.7072866+00:00\",\r\n \"endTime\": + \"2021-04-13T07:27:43.1603851+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshot2-000007\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n @@ -2027,11 +2027,11 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:42.7228835+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"407f2aea-4acf-40f6-8ee0-92deedf81555\"\r\n}" + \"3f0e2731-9156-4fcf-9be8-c9e76e9f1cb5\"\r\n}" headers: cache-control: - no-cache @@ -2040,7 +2040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:16 GMT + - Tue, 13 Apr 2021 07:27:44 GMT expires: - '-1' pragma: @@ -2057,7 +2057,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399976 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -2075,9 +2075,9 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"snapshot2-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n @@ -2086,9 +2086,9 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:42.7228835+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2098,7 +2098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:17 GMT + - Tue, 13 Apr 2021 07:27:44 GMT expires: - '-1' pragma: @@ -2115,7 +2115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119962 + - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119988 status: code: 200 message: OK @@ -2133,9 +2133,9 @@ interactions: ParameterSetName: - -g -n --encryption-type --disk-encryption-set 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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"snapshot2-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n @@ -2144,9 +2144,9 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:42.7228835+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2156,7 +2156,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:19 GMT + - Tue, 13 Apr 2021 07:27:47 GMT expires: - '-1' pragma: @@ -2173,7 +2173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14978,Microsoft.Compute/LowCostGet30Min;119960 + - Microsoft.Compute/LowCostGet3Min;14986,Microsoft.Compute/LowCostGet30Min;119986 status: code: 200 message: OK @@ -2198,9 +2198,9 @@ interactions: ParameterSetName: - -g -n --encryption-type --disk-encryption-set 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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": @@ -2213,7 +2213,7 @@ interactions: \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cf3e19a5-51db-4068-b5e6-f0878eef9ab1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/385ff893-3e9e-4472-9c40-378402dbda13?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2221,11 +2221,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:21 GMT + - Tue, 13 Apr 2021 07:27:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cf3e19a5-51db-4068-b5e6-f0878eef9ab1?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/385ff893-3e9e-4472-9c40-378402dbda13?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2238,7 +2238,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 202 message: Accepted @@ -2256,13 +2256,13 @@ interactions: ParameterSetName: - -g -n --encryption-type --disk-encryption-set 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/westcentralus/DiskOperations/cf3e19a5-51db-4068-b5e6-f0878eef9ab1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/385ff893-3e9e-4472-9c40-378402dbda13?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:10:21.1245604+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cf3e19a5-51db-4068-b5e6-f0878eef9ab1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:27:49.8947632+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"385ff893-3e9e-4472-9c40-378402dbda13\"\r\n}" headers: cache-control: - no-cache @@ -2271,7 +2271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:24 GMT + - Tue, 13 Apr 2021 07:27:52 GMT expires: - '-1' pragma: @@ -2288,7 +2288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399974 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 status: code: 200 message: OK @@ -2306,35 +2306,24 @@ interactions: ParameterSetName: - -g -n --encryption-type --disk-encryption-set 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/westcentralus/DiskOperations/cf3e19a5-51db-4068-b5e6-f0878eef9ab1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/385ff893-3e9e-4472-9c40-378402dbda13?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:10:21.1245604+00:00\",\r\n \"endTime\": - \"2021-04-08T03:10:34.2650812+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshot2-000007\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n - \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\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\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n - \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithCustomerKey\",\r\n - \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"cf3e19a5-51db-4068-b5e6-f0878eef9ab1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:27:49.8947632+00:00\",\r\n \"endTime\": + \"2021-04-13T07:27:54.5979021+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"snapshot2-000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":10,\"encryption\":{\"type\":\"EncryptionAtRestWithCustomerKey\",\"diskEncryptionSetId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\"},\"incremental\":false,\"timeCreated\":\"2021-04-13T07:27:42.7228835+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n + \ },\r\n \"name\": \"385ff893-3e9e-4472-9c40-378402dbda13\"\r\n}" headers: cache-control: - no-cache content-length: - - '1355' + - '1187' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:34 GMT + - Tue, 13 Apr 2021 07:28:02 GMT expires: - '-1' pragma: @@ -2351,7 +2340,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399972 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -2369,9 +2358,9 @@ interactions: ParameterSetName: - -g -n --encryption-type --disk-encryption-set 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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"snapshot2-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n @@ -2380,10 +2369,10 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithCustomerKey\",\r\n - \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n + \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\"\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:42.7228835+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2393,7 +2382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:34 GMT + - Tue, 13 Apr 2021 07:28:03 GMT expires: - '-1' pragma: @@ -2410,7 +2399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14979,Microsoft.Compute/LowCostGet30Min;119956 + - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119982 status: code: 200 message: OK @@ -2428,12 +2417,12 @@ 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/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005/associatedResources?api-version=2020-12-01 response: body: - string: "{\r\n \"value\": [\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/snapshots/SNAPSHOT2-UVQQDEKD5O\"\r\n + string: "{\r\n \"value\": [\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/snapshots/SNAPSHOT2-GJ7ISXRC46\"\r\n \ ]\r\n}" headers: cache-control: @@ -2443,7 +2432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:36 GMT + - Tue, 13 Apr 2021 07:28:04 GMT expires: - '-1' pragma: 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 aac7f22a66c..36cfeb4a46f 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml @@ -14,14 +14,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"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:42 GMT + - Tue, 13 Apr 2021 07:24:19 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AUZJR5TQ77W2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_MTMIFL6NUJZC\"\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/a49c0d57-1cc4-43e4-b07b-e2c3c06b8433?api-version=2019-12-01 + - 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 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:50 GMT + - Tue, 13 Apr 2021 07:24:27 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -115,23 +115,23 @@ 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/a49c0d57-1cc4-43e4-b07b-e2c3c06b8433?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:49.0727515+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:49.18213+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": - \"a49c0d57-1cc4-43e4-b07b-e2c3c06b8433\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '182' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:20 GMT + - Tue, 13 Apr 2021 07:24:57 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AUZJR5TQ77W2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_MTMIFL6NUJZC\"\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:20 GMT + - Tue, 13 Apr 2021 07:24:57 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2491 + - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495 status: code: 200 message: OK @@ -221,14 +221,14 @@ interactions: -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:21 GMT + - Tue, 13 Apr 2021 07:24:58 GMT expires: - '-1' pragma: @@ -272,7 +272,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -286,7 +286,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4eece08a-0219-49e4-8481-ce5a6f8ba1ea?api-version=2020-09-30 + - 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 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:29 GMT + - Tue, 13 Apr 2021 07:25:06 GMT expires: - '-1' pragma: @@ -307,9 +307,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -328,23 +328,23 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.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/4eece08a-0219-49e4-8481-ce5a6f8ba1ea?api-version=2020-09-30 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:02:27.4805329+00:00\",\r\n \"endTime\": - \"2021-04-08T03:02:27.574293+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"4eece08a-0219-49e4-8481-ce5a6f8ba1ea\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:59 GMT + - Tue, 13 Apr 2021 07:25:37 GMT expires: - '-1' pragma: @@ -361,7 +361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -380,7 +380,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:59 GMT + - Tue, 13 Apr 2021 07:25:37 GMT expires: - '-1' pragma: @@ -417,7 +417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 status: code: 200 message: OK @@ -436,14 +436,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -452,7 +452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:01 GMT + - Tue, 13 Apr 2021 07:25:38 GMT expires: - '-1' pragma: @@ -485,7 +485,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -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/024e38dc-329c-4326-84b3-d353d44bf50a?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -505,11 +505,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:06 GMT + - Tue, 13 Apr 2021 07:25:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/024e38dc-329c-4326-84b3-d353d44bf50a?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -522,7 +522,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -540,13 +540,13 @@ interactions: ParameterSetName: - -g -n --size-gb 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/024e38dc-329c-4326-84b3-d353d44bf50a?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:06.5657487+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:06.6439098+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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-08T03:03:06.5657487+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:25:45.1372811+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"024e38dc-329c-4326-84b3-d353d44bf50a\"\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}" headers: cache-control: - no-cache @@ -567,7 +567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:09 GMT + - Tue, 13 Apr 2021 07:25:46 GMT expires: - '-1' pragma: @@ -584,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996 + - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987 status: code: 200 message: OK @@ -602,7 +602,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -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-08T03:03:06.5657487+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:25:45.1372811+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\",\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: - - Thu, 08 Apr 2021 03:03:09 GMT + - Tue, 13 Apr 2021 07:25:47 GMT expires: - '-1' pragma: @@ -643,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119993 + - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119984 status: code: 200 message: OK @@ -662,14 +662,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -678,7 +678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:09 GMT + - Tue, 13 Apr 2021 07:25:47 GMT expires: - '-1' pragma: @@ -711,7 +711,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: @@ -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/b02ff47e-f403-40d6-a63b-a5c29a95cf46?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -731,11 +731,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:15 GMT + - Tue, 13 Apr 2021 07:25:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/b02ff47e-f403-40d6-a63b-a5c29a95cf46?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -766,13 +766,13 @@ interactions: ParameterSetName: - -g -n --size-gb 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/b02ff47e-f403-40d6-a63b-a5c29a95cf46?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:16.0355769+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:16.1449916+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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-08T03:03:16.0355769+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:25:54.8413392+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"b02ff47e-f403-40d6-a63b-a5c29a95cf46\"\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}" headers: cache-control: - no-cache @@ -793,7 +793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:18 GMT + - Tue, 13 Apr 2021 07:25:56 GMT expires: - '-1' pragma: @@ -810,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994 + - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399985 status: code: 200 message: OK @@ -828,7 +828,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: @@ -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-08T03:03:16.0355769+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:25:54.8413392+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\",\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: - - Thu, 08 Apr 2021 03:03:18 GMT + - Tue, 13 Apr 2021 07:25:57 GMT expires: - '-1' pragma: @@ -869,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119991 + - Microsoft.Compute/LowCostGet3Min;14977,Microsoft.Compute/LowCostGet30Min;119977 status: code: 200 message: OK @@ -888,14 +888,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -904,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:19 GMT + - Tue, 13 Apr 2021 07:25:57 GMT expires: - '-1' pragma: @@ -937,7 +937,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: @@ -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/e8c71d1b-90b4-4db6-bca5-9d0e6330fc32?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -957,11 +957,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:24 GMT + - Tue, 13 Apr 2021 07:26:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e8c71d1b-90b4-4db6-bca5-9d0e6330fc32?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -974,7 +974,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 202 message: Accepted @@ -992,13 +992,13 @@ interactions: ParameterSetName: - -g -n --size-gb 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/e8c71d1b-90b4-4db6-bca5-9d0e6330fc32?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:25.1145197+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:25.2239415+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -1007,10 +1007,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-08T03:03:25.1145197+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:26:03.5138046+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"e8c71d1b-90b4-4db6-bca5-9d0e6330fc32\"\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}" headers: cache-control: - no-cache @@ -1019,7 +1019,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:26 GMT + - Tue, 13 Apr 2021 07:26:05 GMT expires: - '-1' pragma: @@ -1036,7 +1036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399992 + - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399983 status: code: 200 message: OK @@ -1054,7 +1054,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: @@ -1066,9 +1066,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-08T03:03:25.1145197+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:26:03.5138046+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1078,7 +1078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:27 GMT + - Tue, 13 Apr 2021 07:26:06 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119988 + - Microsoft.Compute/LowCostGet3Min;14973,Microsoft.Compute/LowCostGet30Min;119973 status: code: 200 message: OK @@ -1113,9 +1113,9 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' @@ -1129,7 +1129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:28 GMT + - Tue, 13 Apr 2021 07:26:07 GMT expires: - '-1' pragma: @@ -1157,7 +1157,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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -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-08T03:03:06.5657487+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:25:45.1372811+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\",\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: - - Thu, 08 Apr 2021 03:03:29 GMT + - Tue, 13 Apr 2021 07:26:08 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119987 + - Microsoft.Compute/LowCostGet3Min;14972,Microsoft.Compute/LowCostGet30Min;119972 status: code: 200 message: OK @@ -1217,14 +1217,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:28 GMT + - Tue, 13 Apr 2021 07:26:08 GMT expires: - '-1' pragma: @@ -1266,20 +1266,20 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\"\r\n },\r\n + \ \"sourceUniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\"\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/8d206329-3f1d-4bfd-9d01-5505a8aac839?api-version=2020-05-01 + - 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 cache-control: - no-cache content-length: @@ -1287,11 +1287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:35 GMT + - Tue, 13 Apr 2021 07:26:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8d206329-3f1d-4bfd-9d01-5505a8aac839?monitor=true&api-version=2020-05-01 + - 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 pragma: - no-cache server: @@ -1302,9 +1302,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 202 message: Accepted @@ -1322,26 +1322,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/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8d206329-3f1d-4bfd-9d01-5505a8aac839?api-version=2020-05-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:36.0528019+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:36.9590908+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\"\r\n },\r\n + \ \"sourceUniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:36.0684184+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:15.8738026+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ff738999-5836-4085-9eb5-89769921518c\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a570eb9d-b3b1-43f8-a9e2-48033ebd4ee0\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"8d206329-3f1d-4bfd-9d01-5505a8aac839\"\r\n}" + \"029ae372-c45c-409a-b04f-61e8481d31ba\"\r\n}" headers: cache-control: - no-cache @@ -1350,7 +1350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:37 GMT + - Tue, 13 Apr 2021 07:26:17 GMT expires: - '-1' pragma: @@ -1367,7 +1367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399990 + - Microsoft.Compute/GetOperation3Min;49981,Microsoft.Compute/GetOperation30Min;399981 status: code: 200 message: OK @@ -1385,9 +1385,9 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1395,11 +1395,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\"\r\n },\r\n + \ \"sourceUniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:36.0684184+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:15.8738026+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ff738999-5836-4085-9eb5-89769921518c\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a570eb9d-b3b1-43f8-a9e2-48033ebd4ee0\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1409,7 +1409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:37 GMT + - Tue, 13 Apr 2021 07:26:17 GMT expires: - '-1' pragma: @@ -1426,7 +1426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119981 + - Microsoft.Compute/LowCostGet3Min;14968,Microsoft.Compute/LowCostGet30Min;119968 status: code: 200 message: OK @@ -1444,9 +1444,9 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d2'' @@ -1460,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:39 GMT + - Tue, 13 Apr 2021 07:26:19 GMT expires: - '-1' pragma: @@ -1488,7 +1488,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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: @@ -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-08T03:03:16.0355769+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:25:54.8413392+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\",\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: - - Thu, 08 Apr 2021 03:03:40 GMT + - Tue, 13 Apr 2021 07:26:19 GMT expires: - '-1' pragma: @@ -1529,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119980 + - Microsoft.Compute/LowCostGet3Min;14967,Microsoft.Compute/LowCostGet30Min;119967 status: code: 200 message: OK @@ -1548,14 +1548,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1564,7 +1564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:39 GMT + - Tue, 13 Apr 2021 07:26:20 GMT expires: - '-1' pragma: @@ -1597,20 +1597,20 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\"\r\n },\r\n + \ \"sourceUniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\"\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/8b2efc19-4573-4810-b8b6-e97d025b5607?api-version=2020-05-01 + - 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 cache-control: - no-cache content-length: @@ -1618,11 +1618,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:45 GMT + - Tue, 13 Apr 2021 07:26:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8b2efc19-4573-4810-b8b6-e97d025b5607?monitor=true&api-version=2020-05-01 + - 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 pragma: - no-cache server: @@ -1633,9 +1633,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 202 message: Accepted @@ -1653,26 +1653,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/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8b2efc19-4573-4810-b8b6-e97d025b5607?api-version=2020-05-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:45.8502105+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:46.4908926+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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\": \"be546afd-ca8a-4bf3-942c-392987450e41\"\r\n },\r\n + \ \"sourceUniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:45.8658341+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:25.9679932+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9641e474-e9b9-49e1-93d3-ed1f91b3777e\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"63437e1e-abc1-4e22-b17d-1eb0bec06007\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"8b2efc19-4573-4810-b8b6-e97d025b5607\"\r\n}" + \"77a48fe5-6f1c-4756-9cb1-52acc3a6aefa\"\r\n}" headers: cache-control: - no-cache @@ -1681,7 +1681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:48 GMT + - Tue, 13 Apr 2021 07:26:28 GMT expires: - '-1' pragma: @@ -1698,7 +1698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987 + - Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399979 status: code: 200 message: OK @@ -1716,9 +1716,9 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n @@ -1726,11 +1726,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\"\r\n },\r\n + \ \"sourceUniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:45.8658341+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:25.9679932+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9641e474-e9b9-49e1-93d3-ed1f91b3777e\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"63437e1e-abc1-4e22-b17d-1eb0bec06007\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1740,7 +1740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:48 GMT + - Tue, 13 Apr 2021 07:26:28 GMT expires: - '-1' pragma: @@ -1757,7 +1757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14976,Microsoft.Compute/LowCostGet30Min;119976 + - Microsoft.Compute/LowCostGet3Min;14964,Microsoft.Compute/LowCostGet30Min;119964 status: code: 200 message: OK @@ -1775,9 +1775,9 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d3'' @@ -1791,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:49 GMT + - Tue, 13 Apr 2021 07:26:29 GMT expires: - '-1' pragma: @@ -1819,7 +1819,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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: @@ -1831,9 +1831,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-08T03:03:25.1145197+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:26:03.5138046+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1843,7 +1843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:49 GMT + - Tue, 13 Apr 2021 07:26:29 GMT expires: - '-1' pragma: @@ -1860,7 +1860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14975,Microsoft.Compute/LowCostGet30Min;119975 + - Microsoft.Compute/LowCostGet3Min;14963,Microsoft.Compute/LowCostGet30Min;119963 status: code: 200 message: OK @@ -1879,14 +1879,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1895,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:49 GMT + - Tue, 13 Apr 2021 07:26:29 GMT expires: - '-1' pragma: @@ -1928,20 +1928,20 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\"\r\n },\r\n + \ \"sourceUniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\"\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/bd4e6896-d0b7-4e4f-84d3-95ee4370832f?api-version=2020-05-01 + - 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 cache-control: - no-cache content-length: @@ -1949,11 +1949,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:55 GMT + - Tue, 13 Apr 2021 07:26:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/bd4e6896-d0b7-4e4f-84d3-95ee4370832f?monitor=true&api-version=2020-05-01 + - 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 pragma: - no-cache server: @@ -1966,7 +1966,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;996,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1984,26 +1984,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/providers/Microsoft.Compute/locations/eastus2/DiskOperations/bd4e6896-d0b7-4e4f-84d3-95ee4370832f?api-version=2020-05-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:55.9757392+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:56.5694832+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\"\r\n },\r\n + \ \"sourceUniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:55.9913638+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:35.9683509+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2b429c94-8f55-4941-888e-c1c755d37a71\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0c2e95c4-af98-42ec-aa8a-91e493b8ecc2\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"bd4e6896-d0b7-4e4f-84d3-95ee4370832f\"\r\n}" + \"9f2e7f31-906c-4a1a-afcd-90dffb039771\"\r\n}" headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:57 GMT + - Tue, 13 Apr 2021 07:26:37 GMT expires: - '-1' pragma: @@ -2029,7 +2029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399983 + - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399977 status: code: 200 message: OK @@ -2047,9 +2047,9 @@ 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n @@ -2057,11 +2057,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\"\r\n },\r\n + \ \"sourceUniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:55.9913638+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:35.9683509+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2b429c94-8f55-4941-888e-c1c755d37a71\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0c2e95c4-af98-42ec-aa8a-91e493b8ecc2\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2071,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:58 GMT + - Tue, 13 Apr 2021 07:26:38 GMT expires: - '-1' pragma: @@ -2088,7 +2088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14968,Microsoft.Compute/LowCostGet30Min;119968 + - Microsoft.Compute/LowCostGet3Min;14960,Microsoft.Compute/LowCostGet30Min;119960 status: code: 200 message: OK @@ -2108,14 +2108,14 @@ interactions: --data-snapshots --data-snapshot-luns User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_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-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:58 GMT + - Tue, 13 Apr 2021 07:26:39 GMT expires: - '-1' pragma: @@ -2162,7 +2162,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -2173,7 +2173,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:45.4122769+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/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01 + - 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 cache-control: - no-cache content-length: @@ -2194,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:07 GMT + - Tue, 13 Apr 2021 07:26:47 GMT expires: - '-1' pragma: @@ -2209,7 +2209,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2228,13 +2228,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.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/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -2243,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:05:08 GMT + - Tue, 13 Apr 2021 07:27:47 GMT expires: - '-1' pragma: @@ -2260,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4190 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4195 status: code: 200 message: OK @@ -2279,13 +2279,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.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/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -2294,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:06:09 GMT + - Tue, 13 Apr 2021 07:28:49 GMT expires: - '-1' pragma: @@ -2311,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4188 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4193 status: code: 200 message: OK @@ -2330,13 +2330,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.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/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -2345,7 +2345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:10 GMT + - Tue, 13 Apr 2021 07:29:48 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;4187 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -2381,13 +2381,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.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/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -2396,7 +2396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:10 GMT + - Tue, 13 Apr 2021 07:30:50 GMT expires: - '-1' pragma: @@ -2413,7 +2413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -2432,13 +2432,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.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/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -2447,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:12 GMT + - Tue, 13 Apr 2021 07:31:50 GMT expires: - '-1' pragma: @@ -2464,7 +2464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2483,14 +2483,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns 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/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"endTime\": - \"2021-04-08T03:09:42.4980292+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -2499,7 +2499,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:13 GMT + - Tue, 13 Apr 2021 07:32:52 GMT expires: - '-1' pragma: @@ -2516,7 +2516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -2535,7 +2535,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns 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/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -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-08T03:04:05.3593661+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:45.4122769+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: - - Thu, 08 Apr 2021 03:10:13 GMT + - Tue, 13 Apr 2021 07:32:52 GMT expires: - '-1' pragma: @@ -2583,7 +2583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_other_extended_location.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_other_extended_location.yaml new file mode 100644 index 00000000000..d26f2ab6702 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_other_extended_location.yaml @@ -0,0 +1,922 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --edge-zone + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_other_extended_location_000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001","name":"cli_test_other_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T06:44:32Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:44:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "extendedLocation": + {"name": "microsoftlosangeles1", "type": "EdgeZone"}, "properties": {"creationData": + {"createOption": "Empty"}, "diskSizeGB": 10}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + Content-Length: + - '217' + Content-Type: + - application/json + ParameterSetName: + - -g -n --size-gb --edge-zone + 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_other_extended_location_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"westus\",\r\n \"tags\": + {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n \"name\": + \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n + \ },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"provisioningState\": + \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c1f8854-7f21-47da-98b9-50d36775ffd6?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '372' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:44:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c1f8854-7f21-47da-98b9-50d36775ffd6?monitor=true&api-version=2020-12-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7997 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --edge-zone + 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/8c1f8854-7f21-47da-98b9-50d36775ffd6?api-version=2020-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-13T06:44:40.8959063+00:00\",\r\n \"endTime\": + \"2021-04-13T06:44:41.0365452+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_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\",\r\n + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n + \ \"name\": \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": + {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": + 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T06:44:40.8959063+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ccdb5a81-75f3-4f21-bf21-85f44a6342e8\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n + \ },\r\n \"name\": \"8c1f8854-7f21-47da-98b9-50d36775ffd6\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1203' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:44: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/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399992 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --edge-zone + 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_other_extended_location_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\",\r\n + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n + \ \"name\": \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": + {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": + 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T06:44:40.8959063+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ccdb5a81-75f3-4f21-bf21-85f44a6342e8\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:44:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39961 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --edge-zone --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_other_extended_location_000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001","name":"cli_test_other_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T06:44:32Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:44: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: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "extendedLocation": + {"name": "microsoftlosangeles1", "type": "EdgeZone"}, "properties": {"creationData": + {"createOption": "Empty"}, "diskSizeGB": 10}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + Content-Length: + - '217' + Content-Type: + - application/json + ParameterSetName: + - -g -n --size-gb --edge-zone --sku + 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_other_extended_location_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 + response: + body: + string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"extendedLocation\": + {\r\n \"type\": \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n + \ },\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": + {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": + true\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0a1d0569-14ce-45a8-838f-9d475ddba2a8?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '355' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:44:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0a1d0569-14ce-45a8-838f-9d475ddba2a8?monitor=true&api-version=2020-12-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --edge-zone --sku + 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/0a1d0569-14ce-45a8-838f-9d475ddba2a8?api-version=2020-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-13T06:44:50.2552367+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0a1d0569-14ce-45a8-838f-9d475ddba2a8\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:44: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/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399990 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --edge-zone --sku + 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/0a1d0569-14ce-45a8-838f-9d475ddba2a8?api-version=2020-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-13T06:44:50.2552367+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0a1d0569-14ce-45a8-838f-9d475ddba2a8\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:45:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399988 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --edge-zone --sku + 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/0a1d0569-14ce-45a8-838f-9d475ddba2a8?api-version=2020-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-13T06:44:50.2552367+00:00\",\r\n \"endTime\": + \"2021-04-13T06:45:17.9438212+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"s1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/snapshots/s1\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"extendedLocation\":{\"type\":\"EdgeZone\",\"name\":\"microsoftlosangeles1\"},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":10,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2021-04-13T06:44:50.2552367+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"51321b6b-1ce5-410b-b88b-7bb115cb9251\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n + \ },\r\n \"name\": \"0a1d0569-14ce-45a8-838f-9d475ddba2a8\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '976' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:45:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --edge-zone --sku + 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_other_extended_location_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n + \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n + \ \"name\": \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": + {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T06:44:50.2552367+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"51321b6b-1ce5-410b-b88b-7bb115cb9251\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '933' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:45: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/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39956 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --os-type --source --edge-zone + 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_other_extended_location_000001/providers/Microsoft.Compute/virtualMachines/d1?$expand=instanceView&api-version=2020-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/d1'' + under resource group ''cli_test_other_extended_location_000001'' was not found. + For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '283' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:45:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --os-type --source --edge-zone + 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_other_extended_location_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' + under resource group ''cli_test_other_extended_location_000001'' was not found. + For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '277' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:45:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --os-type --source --edge-zone + 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_other_extended_location_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\",\r\n + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n + \ \"name\": \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": + {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": + 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T06:44:40.8959063+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ccdb5a81-75f3-4f21-bf21-85f44a6342e8\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:45:35 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;4988,Microsoft.Compute/LowCostGet30Min;39954 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --os-type --source --edge-zone + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_other_extended_location_000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001","name":"cli_test_other_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T06:44:32Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:45:36 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": {}, "extendedLocation": {"name": "microsoftlosangeles1", + "type": "EdgeZone"}, "properties": {"storageProfile": {"osDisk": {"managedDisk": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1"}, + "osType": "Linux", "osState": "Generalized"}, "dataDisks": []}, "hyperVGeneration": + "V1"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n --os-type --source --edge-zone + 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_other_extended_location_000001/providers/Microsoft.Compute/images/image?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"image\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/images/image\",\r\n + \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\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/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\"\r\n + \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"provisioningState\": + \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"extendedLocation\": + {\r\n \"type\": \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d7f90c61-498c-49f9-828c-0120f9007000?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '942' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:45:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --os-type --source --edge-zone + 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/operations/d7f90c61-498c-49f9-828c-0120f9007000?api-version=2020-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-13T06:45:41.096543+00:00\",\r\n \"endTime\": + \"2021-04-13T06:45:46.1593677+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d7f90c61-498c-49f9-828c-0120f9007000\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:46: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/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29941 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --os-type --source --edge-zone + 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_other_extended_location_000001/providers/Microsoft.Compute/images/image?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"image\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/images/image\",\r\n + \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n + \ \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\"\r\n + \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"extendedLocation\": + {\r\n \"type\": \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '970' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 13 Apr 2021 06:46: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/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1797 + status: + code: 200 + message: OK +version: 1 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 59e339cdac6..72f96e31986 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml @@ -14,14 +14,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"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:56:58 GMT + - Tue, 13 Apr 2021 07:24:19 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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_WULI24WD3TMC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_UG3QCY4BQNGC\"\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/03604027-9ee1-4807-8014-566254a5a4c7?api-version=2019-12-01 + - 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 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:57:04 GMT + - Tue, 13 Apr 2021 07:24:25 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: - - '1196' + - '1198' status: code: 201 message: Created @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/capsOperations/03604027-9ee1-4807-8014-566254a5a4c7?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:57:03.4870001+00:00\",\r\n \"endTime\": - \"2021-04-08T03:57:03.7369544+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"03604027-9ee1-4807-8014-566254a5a4c7\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:57:34 GMT + - Tue, 13 Apr 2021 07:24:55 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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_WULI24WD3TMC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_UG3QCY4BQNGC\"\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:57:34 GMT + - Tue, 13 Apr 2021 07:24:55 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2493 status: code: 200 message: OK @@ -220,14 +220,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:57:36 GMT + - Tue, 13 Apr 2021 07:24:56 GMT expires: - '-1' pragma: @@ -270,7 +270,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -284,7 +284,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/061fbd08-8853-4a63-937c-e58923d6e46a?api-version=2020-09-30 + - 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 cache-control: - no-cache content-length: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:57:42 GMT + - Tue, 13 Apr 2021 07:25:03 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: - - '1193' + - '1199' status: code: 201 message: Created @@ -325,14 +325,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.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/westus/capsOperations/061fbd08-8853-4a63-937c-e58923d6e46a?api-version=2020-09-30 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:57:41.3151462+00:00\",\r\n \"endTime\": - \"2021-04-08T03:57:41.4245225+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"061fbd08-8853-4a63-937c-e58923d6e46a\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:58:12 GMT + - Tue, 13 Apr 2021 07:25:34 GMT expires: - '-1' pragma: @@ -358,7 +358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194 status: code: 200 message: OK @@ -376,7 +376,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:58:12 GMT + - Tue, 13 Apr 2021 07:25:34 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2993 status: code: 200 message: OK @@ -432,14 +432,14 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -448,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:58:13 GMT + - Tue, 13 Apr 2021 07:25:35 GMT expires: - '-1' pragma: @@ -527,13 +527,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 08 Apr 2021 03:58:14 GMT + - Tue, 13 Apr 2021 07:25:35 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Thu, 08 Apr 2021 04:03:14 GMT + - Tue, 13 Apr 2021 07:30:35 GMT source-age: - - '82' + - '53' strict-transport-security: - max-age=31536000 vary: @@ -547,15 +547,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 8e064e51362c07520678686212e63f9599ce668b + - f6929591dc3ef1a4050229af33c224b56010a4d5 x-frame-options: - deny x-github-request-id: - - 1190:87A4:204620:263068:606E0A67 + - 5EEC:7F55:8F1839:AC7E73:60743B16 x-served-by: - - cache-qpg1275-QPG + - cache-qpg1251-QPG x-timer: - - S1617854295.724829,VS0,VE0 + - S1618298736.675268,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -575,7 +575,7 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -589,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:58:14 GMT + - Tue, 13 Apr 2021 07:25:36 GMT expires: - '-1' pragma: @@ -649,25 +649,25 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV","name":"vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17804174946670383865","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:58:18.9594623Z","duration":"PT2.3138099S","correlationId":"9f075fbc-c5a9-4f9c-903a-082408992b15","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_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"}]}}' 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_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV/operationStatuses/08585837525888319776?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_tKycqdhmntHHge1mJ8GXEJbEqJQVg12K/operationStatuses/08585833081483233027?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2782' + - '2778' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:58:20 GMT + - Tue, 13 Apr 2021 07:25:39 GMT expires: - '-1' pragma: @@ -696,9 +696,9 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837525888319776?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/08585833081483233027?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:58:51 GMT + - Tue, 13 Apr 2021 07:26:10 GMT expires: - '-1' pragma: @@ -739,9 +739,9 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837525888319776?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/08585833081483233027?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -753,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:21 GMT + - Tue, 13 Apr 2021 07:26:40 GMT expires: - '-1' pragma: @@ -782,12 +782,12 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV","name":"vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17804174946670383865","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:58:58.4638984Z","duration":"PT41.818246S","correlationId":"9f075fbc-c5a9-4f9c-903a-082408992b15","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_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"}]}}' headers: cache-control: - no-cache @@ -796,7 +796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:22 GMT + - Tue, 13 Apr 2021 07:26:41 GMT expires: - '-1' pragma: @@ -824,23 +824,23 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3cf92da8-b342-45d0-b3d1-3d19128318bc\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"41ef2ad2-722c-4b18-8f9f-6e49ba7fb9b5\",\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_6c762f58cbfe4991b4d15c590773e468\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_c581464aec524ede84e55a4a69aef149\",\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_6c762f58cbfe4991b4d15c590773e468\"\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 \ },\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-08T03:59:12+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n + \"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 \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:58:46.5375047+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-13T07:26:05.8168371+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:58:56.4911178+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-13T07:26:22.1302202+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -875,7 +875,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:23 GMT + - Tue, 13 Apr 2021 07:26:43 GMT expires: - '-1' pragma: @@ -892,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31996 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31939 status: code: 200 message: OK @@ -910,18 +910,18 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"38e6c952-1101-4c90-a1ba-8fdbeed04a2d\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"131feb2e-38b9-4213-be05-bf7d648ee967\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"33ea2110-6967-471f-8a45-787e1dafcbb3\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"d913980d-12ba-4473-aa6f-7890ef5933d8\",\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/\\\"38e6c952-1101-4c90-a1ba-8fdbeed04a2d\\\"\",\r\n + \ \"etag\": \"W/\\\"131feb2e-38b9-4213-be05-bf7d648ee967\\\"\",\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\": - \"444mcs5h3q4u3kzjcobwmayypb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-08-4F-39\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"d5juh1eciqtepe414gsywquwfc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-09-17-AB\",\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: - - Thu, 08 Apr 2021 03:59:24 GMT + - Tue, 13 Apr 2021 07:26:43 GMT etag: - - W/"38e6c952-1101-4c90-a1ba-8fdbeed04a2d" + - W/"131feb2e-38b9-4213-be05-bf7d648ee967" expires: - '-1' pragma: @@ -964,7 +964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2baf46ce-b5f6-4f8f-8a6c-207cbef19a3b + - f5447f27-1863-49ce-a7d2-c9aad7536c3e status: code: 200 message: OK @@ -982,17 +982,17 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"7c026b68-c72e-43c9-9d05-e20a87473835\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f983827c-dfcc-4f00-a0fc-b508f501adf4\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3e0a95a0-9463-45df-9e41-5dedd624040c\",\r\n - \ \"ipAddress\": \"104.45.210.183\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"c6af8e24-c5d2-4e8d-888b-a903e8d3b38c\",\r\n + \ \"ipAddress\": \"138.91.139.61\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -1000,13 +1000,13 @@ interactions: cache-control: - no-cache content-length: - - '998' + - '997' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:24 GMT + - Tue, 13 Apr 2021 07:26:44 GMT etag: - - W/"7c026b68-c72e-43c9-9d05-e20a87473835" + - W/"f983827c-dfcc-4f00-a0fc-b508f501adf4" expires: - '-1' pragma: @@ -1023,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1034c524-6ee1-4221-a3a9-ff78bcaadb61 + - 0ce35cde-3edc-4b8a-ab09-56dbcc60a803 status: code: 200 message: OK @@ -1041,23 +1041,23 @@ 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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3cf92da8-b342-45d0-b3d1-3d19128318bc\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"41ef2ad2-722c-4b18-8f9f-6e49ba7fb9b5\",\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_6c762f58cbfe4991b4d15c590773e468\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_c581464aec524ede84e55a4a69aef149\",\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_6c762f58cbfe4991b4d15c590773e468\"\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 \ },\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: - - Thu, 08 Apr 2021 03:59:25 GMT + - Tue, 13 Apr 2021 07:26:44 GMT expires: - '-1' pragma: @@ -1092,7 +1092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31995 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31938 status: code: 200 message: OK @@ -1110,12 +1110,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_6c762f58cbfe4991b4d15c590773e468?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_c581464aec524ede84e55a4a69aef149?api-version=2020-12-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_6c762f58cbfe4991b4d15c590773e468'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_c581464aec524ede84e55a4a69aef149'' 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: - - Thu, 08 Apr 2021 03:59:25 GMT + - Tue, 13 Apr 2021 07:26:45 GMT expires: - '-1' pragma: @@ -1154,13 +1154,13 @@ 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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468?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_c581464aec524ede84e55a4a69aef149?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n + 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 \ \"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-08T03:58:45.4414501+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:26:04.9529482+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6c762f58-cbfe-4991-b4d1-5c590773e468\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c581464a-ec52-4ede-84e5-5a4a69aef149\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1181,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:25 GMT + - Tue, 13 Apr 2021 07:26:45 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39988 + - Microsoft.Compute/LowCostGet3Min;4934,Microsoft.Compute/LowCostGet30Min;39913 status: code: 200 message: OK @@ -1217,14 +1217,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:26 GMT + - Tue, 13 Apr 2021 07:26:46 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_6c762f58cbfe4991b4d15c590773e468"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149"}}}' headers: Accept: - application/json @@ -1266,21 +1266,21 @@ 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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n - \ \"sourceUniqueId\": \"6c762f58-cbfe-4991-b4d1-5c590773e468\"\r\n },\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 \ \"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/50b92093-2339-4a71-9eec-4a8fac267857?api-version=2020-05-01 + - 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 cache-control: - no-cache content-length: @@ -1288,11 +1288,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:30 GMT + - Tue, 13 Apr 2021 07:26:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50b92093-2339-4a71-9eec-4a8fac267857?monitor=true&api-version=2020-05-01 + - 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 pragma: - no-cache server: @@ -1303,9 +1303,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;994,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7994 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 202 message: Accepted @@ -1323,36 +1323,36 @@ 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/westus/DiskOperations/50b92093-2339-4a71-9eec-4a8fac267857?api-version=2020-05-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:31.1133052+00:00\",\r\n \"endTime\": - \"2021-04-08T03:59:32.097683+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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_6c762f58cbfe4991b4d15c590773e468\",\r\n - \ \"sourceUniqueId\": \"6c762f58-cbfe-4991-b4d1-5c590773e468\"\r\n },\r\n + \"/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 \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:59:31.1133052+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:50.3606763+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c34f7e41-2bf6-47dc-a138-12d87757a21d\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b7926add-eb51-450c-bd74-9377184ed423\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"50b92093-2339-4a71-9eec-4a8fac267857\"\r\n}" + \"741854b6-6866-4712-b527-4e7ea4eb3b60\"\r\n}" headers: cache-control: - no-cache content-length: - - '1405' + - '1406' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:33 GMT + - Tue, 13 Apr 2021 07:26:52 GMT expires: - '-1' pragma: @@ -1369,7 +1369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399997 + - Microsoft.Compute/GetOperation3Min;49962,Microsoft.Compute/GetOperation30Min;399956 status: code: 200 message: OK @@ -1387,9 +1387,9 @@ 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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1397,12 +1397,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n - \ \"sourceUniqueId\": \"6c762f58-cbfe-4991-b4d1-5c590773e468\"\r\n },\r\n + \"/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 \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:59:31.1133052+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:50.3606763+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c34f7e41-2bf6-47dc-a138-12d87757a21d\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b7926add-eb51-450c-bd74-9377184ed423\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1412,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:33 GMT + - Tue, 13 Apr 2021 07:26:52 GMT expires: - '-1' pragma: @@ -1429,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39987 + - Microsoft.Compute/LowCostGet3Min;4929,Microsoft.Compute/LowCostGet30Min;39908 status: code: 200 message: OK @@ -1448,14 +1448,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1464,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:33 GMT + - Tue, 13 Apr 2021 07:26:54 GMT expires: - '-1' pragma: @@ -1498,7 +1498,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -1509,7 +1509,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:58.0811779+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/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + - 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 cache-control: - no-cache content-length: @@ -1525,7 +1525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:59:40 GMT + - Tue, 13 Apr 2021 07:26:59 GMT expires: - '-1' pragma: @@ -1538,9 +1538,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' status: code: 201 message: Created @@ -1558,63 +1558,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (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/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 04:00: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;1198,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 --os-snapshot - 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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1623,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:01:41 GMT + - Tue, 13 Apr 2021 07:27:59 GMT expires: - '-1' pragma: @@ -1640,7 +1590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -1658,13 +1608,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1673,7 +1623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:02:43 GMT + - Tue, 13 Apr 2021 07:29:01 GMT expires: - '-1' pragma: @@ -1690,7 +1640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -1708,13 +1658,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1723,7 +1673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:03:43 GMT + - Tue, 13 Apr 2021 07:30:02 GMT expires: - '-1' pragma: @@ -1740,7 +1690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -1758,13 +1708,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1773,7 +1723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:04:44 GMT + - Tue, 13 Apr 2021 07:31:03 GMT expires: - '-1' pragma: @@ -1790,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -1808,13 +1758,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1823,7 +1773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:05:44 GMT + - Tue, 13 Apr 2021 07:32:03 GMT expires: - '-1' pragma: @@ -1840,7 +1790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -1858,13 +1808,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1873,7 +1823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:06:46 GMT + - Tue, 13 Apr 2021 07:33:04 GMT expires: - '-1' pragma: @@ -1890,7 +1840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4169 status: code: 200 message: OK @@ -1908,13 +1858,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1923,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:07:46 GMT + - Tue, 13 Apr 2021 07:34:05 GMT expires: - '-1' pragma: @@ -1940,7 +1890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4167 status: code: 200 message: OK @@ -1958,13 +1908,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1973,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:08:47 GMT + - Tue, 13 Apr 2021 07:35:05 GMT expires: - '-1' pragma: @@ -1990,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4164 status: code: 200 message: OK @@ -2008,14 +1958,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot 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/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"endTime\": - \"2021-04-08T04:09:26.0357963+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -2024,7 +1974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:09:48 GMT + - Tue, 13 Apr 2021 07:36:06 GMT expires: - '-1' pragma: @@ -2041,7 +1991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4160 status: code: 200 message: OK @@ -2059,7 +2009,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -2070,7 +2020,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:58.0811779+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2084,7 +2034,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:09:48 GMT + - Tue, 13 Apr 2021 07:36:06 GMT expires: - '-1' pragma: @@ -2101,7 +2051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9985 status: code: 200 message: OK @@ -2120,14 +2070,14 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2136,7 +2086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:09:49 GMT + - Tue, 13 Apr 2021 07:36:07 GMT expires: - '-1' pragma: @@ -2164,7 +2114,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2184,7 +2134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:09:50 GMT + - Tue, 13 Apr 2021 07:36:08 GMT expires: - '-1' pragma: @@ -2201,7 +2151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2989 + - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2975 status: code: 200 message: OK @@ -2219,7 +2169,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -2230,7 +2180,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:58.0811779+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2244,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:09:50 GMT + - Tue, 13 Apr 2021 07:36:08 GMT expires: - '-1' pragma: @@ -2261,7 +2211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9996 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9984 status: code: 200 message: OK @@ -2279,21 +2229,21 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"c3cf21dc-5611-49ed-adee-43052617c0a6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b0edfb82-6cf2-43b1-a235-31290cb88250\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"4bc1bcf7-ece7-4e3d-ab29-138366031879\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"ec43d31f-4482-4726-93db-f1a58b42962a\",\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/\\\"c3cf21dc-5611-49ed-adee-43052617c0a6\\\"\",\r\n + \ \"etag\": \"W/\\\"b0edfb82-6cf2-43b1-a235-31290cb88250\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2309,7 +2259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:09:51 GMT + - Tue, 13 Apr 2021 07:36:09 GMT expires: - '-1' pragma: @@ -2326,7 +2276,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8dcd573c-c852-4cbd-9b46-7e5c74e4cecb + - 667d1c96-75cd-4bcf-9ee4-6131dd159bab status: code: 200 message: OK @@ -2371,17 +2321,17 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw","name":"vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8631533856447706461","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T04:09:55.7438233Z","duration":"PT2.1896417S","correlationId":"62efd6f8-b9f8-44fb-87f5-b0f16670800b","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_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"}]}}' 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_6UQecWzbDivjA2QJWnbMc973fWwffnsw/operationStatuses/08585837518919234482?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_GXNVHeCke6YhcYx3APZBWI91VMxlogWO/operationStatuses/08585833075137227496?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -2389,7 +2339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:09:56 GMT + - Tue, 13 Apr 2021 07:36:15 GMT expires: - '-1' pragma: @@ -2418,9 +2368,9 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + 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/08585837518919234482?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/08585833075137227496?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -2432,7 +2382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:10:27 GMT + - Tue, 13 Apr 2021 07:36:45 GMT expires: - '-1' pragma: @@ -2461,9 +2411,9 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + 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/08585837518919234482?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/08585833075137227496?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2475,7 +2425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:10:57 GMT + - Tue, 13 Apr 2021 07:37:17 GMT expires: - '-1' pragma: @@ -2504,21 +2454,21 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw","name":"vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8631533856447706461","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T04:10:38.027211Z","duration":"PT44.4730294S","correlationId":"62efd6f8-b9f8-44fb-87f5-b0f16670800b","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_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"}]}}' headers: cache-control: - no-cache content-length: - - '3303' + - '3305' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:10:57 GMT + - Tue, 13 Apr 2021 07:37:17 GMT expires: - '-1' pragma: @@ -2546,22 +2496,22 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e04338c-1998-4618-8945-7efe3fdfb1d5\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c2f6d378-6ef1-4316-b9e1-005b412107e6\",\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_649191500ba244a4b71599e9d5b8f6e8\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_a5442a3da0a14073a3a6e8876ce820d9\",\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_649191500ba244a4b71599e9d5b8f6e8\"\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 \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": @@ -2569,18 +2519,18 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-04-08T04:10:59+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-13T07:37:18+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_649191500ba244a4b71599e9d5b8f6e8\",\r\n \"statuses\": + \"vm2_OsDisk_1_a5442a3da0a14073a3a6e8876ce820d9\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T04:10:27.0856494+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-13T07:36:40.5796541+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-08T04:10:34.914094+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-13T07:36:55.8929008+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}" @@ -2588,11 +2538,11 @@ interactions: cache-control: - no-cache content-length: - - '3018' + - '3019' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:10:59 GMT + - Tue, 13 Apr 2021 07:37:18 GMT expires: - '-1' pragma: @@ -2609,7 +2559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31989 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31959 status: code: 200 message: OK @@ -2627,18 +2577,18 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"9f8fe58a-a01d-4242-b4ca-1a3f144c82e6\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b6aa6f4e-a015-4a98-9ceb-7cd1978cd30a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"5c6c7301-8122-414f-aa0a-001213b410dd\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"9221b05f-4bc3-43df-b591-61fac96c421b\",\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/\\\"9f8fe58a-a01d-4242-b4ca-1a3f144c82e6\\\"\",\r\n + \ \"etag\": \"W/\\\"b6aa6f4e-a015-4a98-9ceb-7cd1978cd30a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2647,8 +2597,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"444mcs5h3q4u3kzjcobwmayypb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-3B-9D-16\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"d5juh1eciqtepe414gsywquwfc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-08-27-52\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2662,9 +2612,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:10:59 GMT + - Tue, 13 Apr 2021 07:37:19 GMT etag: - - W/"9f8fe58a-a01d-4242-b4ca-1a3f144c82e6" + - W/"b6aa6f4e-a015-4a98-9ceb-7cd1978cd30a" expires: - '-1' pragma: @@ -2681,7 +2631,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eff3ff0b-b5b5-408a-b1fd-09be1ea717f2 + - 156a3b29-d84b-49cb-b072-a46e9d213cdb status: code: 200 message: OK @@ -2699,16 +2649,16 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"f6d2bc58-6cf9-43a1-ab9a-db7504c55feb\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"eae032eb-c1e7-4437-927b-306fdb63ca4f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"e24050f4-674b-4b1c-b6a5-258ca9c8be06\",\r\n - \ \"ipAddress\": \"13.64.16.109\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8e4d9738-ea8e-4ff8-84a2-eee9a3221c52\",\r\n + \ \"ipAddress\": \"168.62.22.63\",\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 @@ -2721,9 +2671,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:10:59 GMT + - Tue, 13 Apr 2021 07:37:19 GMT etag: - - W/"f6d2bc58-6cf9-43a1-ab9a-db7504c55feb" + - W/"eae032eb-c1e7-4437-927b-306fdb63ca4f" expires: - '-1' pragma: @@ -2740,7 +2690,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ef486b3-d52a-4654-899a-0743dfe4b382 + - f62d10ee-3100-4972-aaef-b1a41f7d7130 status: code: 200 message: OK @@ -2759,14 +2709,14 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2775,7 +2725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:11:00 GMT + - Tue, 13 Apr 2021 07:37:20 GMT expires: - '-1' pragma: @@ -2803,7 +2753,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type 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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2823,7 +2773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:11:01 GMT + - Tue, 13 Apr 2021 07:37:21 GMT expires: - '-1' pragma: @@ -2840,7 +2790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;598,Microsoft.Compute/GetGalleryImage30Min;2988 + - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2972 status: code: 200 message: OK @@ -2858,7 +2808,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type 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/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -2869,7 +2819,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:58.0811779+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2883,7 +2833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:11:01 GMT + - Tue, 13 Apr 2021 07:37:21 GMT expires: - '-1' pragma: @@ -2900,7 +2850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9993 + - Microsoft.Compute/GetGalleryImageVersion3Min;1988,Microsoft.Compute/GetGalleryImageVersion30Min;9977 status: code: 200 message: OK @@ -2918,21 +2868,21 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"f209daf0-10e1-4347-86b8-345dd25bd0d7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7369e8d5-c104-43f2-bcb8-34afc4702014\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"4bc1bcf7-ece7-4e3d-ab29-138366031879\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"ec43d31f-4482-4726-93db-f1a58b42962a\",\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/\\\"f209daf0-10e1-4347-86b8-345dd25bd0d7\\\"\",\r\n + \ \"etag\": \"W/\\\"7369e8d5-c104-43f2-bcb8-34afc4702014\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2949,7 +2899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:11:02 GMT + - Tue, 13 Apr 2021 07:37:21 GMT expires: - '-1' pragma: @@ -2966,7 +2916,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 31e958be-5f91-4dd3-a7db-6873dade9a87 + - 53c5a41b-bc4f-405b-a3af-a999178468c2 status: code: 200 message: OK @@ -2988,11 +2938,14 @@ interactions: {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss1", "location": "westus", "tags": {}, "apiVersion": "2020-12-01", "dependsOn": ["Microsoft.Network/loadBalancers/vmss1LB"], "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": - true, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": - {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": - {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss11d3fNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss11d3fIPConfig", + true, "upgradePolicy": {"mode": "manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": + null, "maxUnhealthyInstancePercent": null, "maxUnhealthyUpgradedInstancePercent": + null, "pauseTimeBetweenBatches": null, "enableCrossZoneUpgrade": null, "prioritizeUnhealthyInstances": + null}}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": + "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, + "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss11e23Nic", + "properties": {"primary": "true", "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"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -3010,32 +2963,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3433' + - '3677' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U","name":"vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3430606802973146022","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T04:11:08.5426943Z","duration":"PT2.6711826S","correlationId":"f3fea81e-703c-491a-9ab9-f4087cead421","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_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"}]}}' 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_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U/operationStatuses/08585837518196061153?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_8akRT3JiTc5Gz0mhSEtDFOgOdyf8jOK7/operationStatuses/08585833074408026388?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2105' + - '2106' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:11:10 GMT + - Tue, 13 Apr 2021 07:37:29 GMT expires: - '-1' pragma: @@ -3045,7 +2998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -3064,52 +3017,9 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - 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/08585837518196061153?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 04:11:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --specialized --admin-username --admin-password --authentication-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837518196061153?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/08585833074408026388?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3121,7 +3031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:12:12 GMT + - Tue, 13 Apr 2021 07:38:01 GMT expires: - '-1' pragma: @@ -3150,9 +3060,9 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837518196061153?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/08585833074408026388?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3164,7 +3074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:12:42 GMT + - Tue, 13 Apr 2021 07:38:31 GMT expires: - '-1' pragma: @@ -3193,21 +3103,21 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U","name":"vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3430606802973146022","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T04:12:18.2154754Z","duration":"PT1M12.3439637S","correlationId":"f3fea81e-703c-491a-9ab9-f4087cead421","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss11d3fNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss11d3fIPConfig","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":"2bc076c1-2f30-42c3-8ab8-ab93a43155d2"}}},"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_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"}]}}' headers: cache-control: - no-cache content-length: - - '4529' + - '4689' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:12:42 GMT + - Tue, 13 Apr 2021 07:38:32 GMT expires: - '-1' pragma: @@ -3236,14 +3146,14 @@ interactions: - -g -n --specialized User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3252,7 +3162,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:12:43 GMT + - Tue, 13 Apr 2021 07:38:33 GMT expires: - '-1' pragma: @@ -3281,14 +3191,14 @@ interactions: - -g -n --specialized User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3297,7 +3207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 04:12:44 GMT + - Tue, 13 Apr 2021 07:38:33 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_by_attach_os_and_data_disks.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_by_attach_os_and_data_disks.yaml index aff4d072be9..b5c9b1ddcd0 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_by_attach_os_and_data_disks.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_by_attach_os_and_data_disks.yaml @@ -15,14 +15,14 @@ interactions: --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":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:09 GMT + - Tue, 13 Apr 2021 07:24:19 GMT expires: - '-1' pragma: @@ -110,13 +110,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:09 GMT + - Tue, 13 Apr 2021 07:24:19 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Thu, 08 Apr 2021 03:06:09 GMT + - Tue, 13 Apr 2021 07:29:19 GMT source-age: - - '221' + - '285' strict-transport-security: - max-age=31536000 vary: @@ -126,19 +126,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '1' + - '464' x-content-type-options: - nosniff x-fastly-request-id: - - 1ac4c994f3d1b64073860205b42d8ea7757a946e + - d21a3fa6b4e9b1acc25fe0c993408c8cdb59c3d7 x-frame-options: - deny x-github-request-id: - - 1190:87A4:204620:263068:606E0A67 + - 5EEC:7F55:8F1839:AC7E73:60743B16 x-served-by: - - cache-qpg1239-QPG + - cache-qpg1242-QPG x-timer: - - S1617850870.893658,VS0,VE1 + - S1618298660.809271,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -159,7 +159,7 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb --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: @@ -173,7 +173,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:09 GMT + - Tue, 13 Apr 2021 07:24:19 GMT expires: - '-1' pragma: @@ -235,17 +235,17 @@ interactions: --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_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV","name":"vm_deploy_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"904054929486398524","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:01:14.2140635Z","duration":"PT2.3049816S","correlationId":"2174f986-a4e2-4ea0-96bf-1238f86694e3","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/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_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH","name":"vm_deploy_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8855700462386582075","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-13T07:24:23.994422Z","duration":"PT2.2306805S","correlationId":"ad13ee21-34ef-497e-991e-db52a9013093","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/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_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV/operationStatuses/08585837560135685533?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH/operationStatuses/08585833082237138934?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -253,7 +253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:15 GMT + - Tue, 13 Apr 2021 07:24:24 GMT expires: - '-1' pragma: @@ -263,7 +263,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -283,9 +283,9 @@ interactions: --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/08585837560135685533?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/08585833082237138934?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -297,7 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:45 GMT + - Tue, 13 Apr 2021 07:24:56 GMT expires: - '-1' pragma: @@ -327,9 +327,9 @@ interactions: --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/08585837560135685533?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/08585833082237138934?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:16 GMT + - Tue, 13 Apr 2021 07:25:26 GMT expires: - '-1' pragma: @@ -371,9 +371,9 @@ interactions: --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/08585837560135685533?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/08585833082237138934?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -385,7 +385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:46 GMT + - Tue, 13 Apr 2021 07:25:57 GMT expires: - '-1' pragma: @@ -415,9 +415,9 @@ interactions: --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/08585837560135685533?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/08585833082237138934?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -429,7 +429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:16 GMT + - Tue, 13 Apr 2021 07:26:27 GMT expires: - '-1' pragma: @@ -459,12 +459,12 @@ interactions: --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_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV","name":"vm_deploy_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"904054929486398524","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:02:56.1596738Z","duration":"PT1M44.2505919S","correlationId":"2174f986-a4e2-4ea0-96bf-1238f86694e3","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/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_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH","name":"vm_deploy_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8855700462386582075","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-13T07:26:25.7768171Z","duration":"PT2M4.0130756S","correlationId":"ad13ee21-34ef-497e-991e-db52a9013093","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/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 @@ -473,7 +473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:17 GMT + - Tue, 13 Apr 2021 07:26:28 GMT expires: - '-1' pragma: @@ -502,28 +502,28 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb --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\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cf99f9e9-fd53-4bda-a205-f423643cfa84\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d0def0ef-ae52-442e-8f26-c1faddfc2a72\",\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\": - \"vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n \"createOption\": + \"vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\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_4df8ba519678467eb9dd5379f78e9ed6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\"\r\n \ },\r\n \"diskSizeGB\": 2,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": @@ -538,20 +538,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:03:16+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n + \"2021-04-13T07:26:26+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\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:01:48.1004095+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-13T07:24:56.6572613+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n \"statuses\": + \"vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\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:01:48.1004095+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-13T07:24:56.6572613+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:02:52.7751761+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-13T07:26:24.2709764+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}" @@ -563,7 +563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:18 GMT + - Tue, 13 Apr 2021 07:26:28 GMT expires: - '-1' pragma: @@ -580,7 +580,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31990 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31941 status: code: 200 message: OK @@ -599,18 +599,18 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb --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/\\\"7c664d5d-98f9-491f-80d4-ba31ff565bf4\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"35a701d8-3940-4828-8e08-5bf75fc42825\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"16eed9e8-5fbe-4ba0-a42d-abcbf4a4cdd1\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"12ca4a98-5e9c-4436-adfe-2c43bfa547e8\",\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/\\\"7c664d5d-98f9-491f-80d4-ba31ff565bf4\\\"\",\r\n + \ \"etag\": \"W/\\\"35a701d8-3940-4828-8e08-5bf75fc42825\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -619,8 +619,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\": - \"t3z3ohzrjfiejeay3dgmb14uch.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-04-2F-41\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"fhxt3plukktu3laudcowngrsbb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-37-6C-43\",\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\": @@ -634,9 +634,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:19 GMT + - Tue, 13 Apr 2021 07:26:29 GMT etag: - - W/"7c664d5d-98f9-491f-80d4-ba31ff565bf4" + - W/"35a701d8-3940-4828-8e08-5bf75fc42825" expires: - '-1' pragma: @@ -653,7 +653,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b1abe584-9ed2-4675-80f6-65169e16f867 + - dd65c7a1-3a3c-4a33-ae56-24c554226744 status: code: 200 message: OK @@ -672,17 +672,17 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb --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/\\\"25e2d61a-f679-4cbf-9965-a49bc92a8490\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"32de4222-d940-42ca-adeb-8b139b1c8279\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"61001735-d686-4b16-ab72-ba605380b670\",\r\n - \ \"ipAddress\": \"40.83.210.56\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"a2690888-9506-46e9-9802-e180af30ee62\",\r\n + \ \"ipAddress\": \"168.62.201.201\",\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}" @@ -690,13 +690,13 @@ interactions: cache-control: - no-cache content-length: - - '996' + - '998' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:19 GMT + - Tue, 13 Apr 2021 07:26:29 GMT etag: - - W/"25e2d61a-f679-4cbf-9965-a49bc92a8490" + - W/"32de4222-d940-42ca-adeb-8b139b1c8279" expires: - '-1' pragma: @@ -713,7 +713,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d269c89b-653a-4acd-9c68-71e50c4984e7 + - 6cf8d8e9-a650-4687-bedb-7fbb6a06f2ed status: code: 200 message: OK @@ -731,28 +731,28 @@ 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/virtualMachines/vm1?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\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cf99f9e9-fd53-4bda-a205-f423643cfa84\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d0def0ef-ae52-442e-8f26-c1faddfc2a72\",\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\": - \"vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n \"createOption\": + \"vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\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_4df8ba519678467eb9dd5379f78e9ed6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\"\r\n \ },\r\n \"diskSizeGB\": 2,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": @@ -770,7 +770,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:19 GMT + - Tue, 13 Apr 2021 07:26:31 GMT expires: - '-1' pragma: @@ -787,7 +787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31988 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31940 status: code: 200 message: OK @@ -805,12 +805,12 @@ 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/snapshots/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed?api-version=2020-12-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed'' under resource group ''clitest.rg000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -821,7 +821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:21 GMT + - Tue, 13 Apr 2021 07:26:31 GMT expires: - '-1' pragma: @@ -849,13 +849,13 @@ 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/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n + string: "{\r\n \"name\": \"vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n @@ -864,9 +864,9 @@ interactions: \ \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\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-08T03:01:46.5877364+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:55.1405065+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\",\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -876,7 +876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:21 GMT + - Tue, 13 Apr 2021 07:26:32 GMT expires: - '-1' pragma: @@ -893,7 +893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4934,Microsoft.Compute/LowCostGet30Min;39934 + - Microsoft.Compute/LowCostGet3Min;4938,Microsoft.Compute/LowCostGet30Min;39917 status: code: 200 message: OK @@ -912,14 +912,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":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -928,7 +928,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:21 GMT + - Tue, 13 Apr 2021 07:26:32 GMT expires: - '-1' pragma: @@ -944,7 +944,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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed"}}}' headers: Accept: - application/json @@ -961,21 +961,21 @@ 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/snapshots/oSnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n - \ \"sourceUniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\"\r\n },\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n + \ \"sourceUniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\"\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/db800272-d6d8-4fcd-a190-33deb2d777f9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31af8d35-04e6-4113-8116-2fb35a07fa4e?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -983,11 +983,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:25 GMT + - Tue, 13 Apr 2021 07:26:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/db800272-d6d8-4fcd-a190-33deb2d777f9?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31af8d35-04e6-4113-8116-2fb35a07fa4e?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1000,7 +1000,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;995,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 202 message: Accepted @@ -1018,36 +1018,36 @@ 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/westus/DiskOperations/db800272-d6d8-4fcd-a190-33deb2d777f9?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31af8d35-04e6-4113-8116-2fb35a07fa4e?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:26.400831+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:27.0102038+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:26:37.0794813+00:00\",\r\n \"endTime\": + \"2021-04-13T07:26:37.7357278+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"oSnapshot\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n - \ \"sourceUniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\"\r\n },\r\n + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n + \ \"sourceUniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:26.400831+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:37.0794813+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\",\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"db800272-d6d8-4fcd-a190-33deb2d777f9\"\r\n}" + \"31af8d35-04e6-4113-8116-2fb35a07fa4e\"\r\n}" headers: cache-control: - no-cache content-length: - - '1452' + - '1454' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:28 GMT + - Tue, 13 Apr 2021 07:26:38 GMT expires: - '-1' pragma: @@ -1064,7 +1064,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49957,Microsoft.Compute/GetOperation30Min;399957 + - Microsoft.Compute/GetOperation3Min;49966,Microsoft.Compute/GetOperation30Min;399960 status: code: 200 message: OK @@ -1082,9 +1082,9 @@ 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/snapshots/oSnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n @@ -1092,22 +1092,22 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n - \ \"sourceUniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\"\r\n },\r\n + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n + \ \"sourceUniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:26.400831+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:37.0794813+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\",\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1228' + - '1229' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:28 GMT + - Tue, 13 Apr 2021 07:26:39 GMT expires: - '-1' pragma: @@ -1124,7 +1124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4933,Microsoft.Compute/LowCostGet30Min;39933 + - Microsoft.Compute/LowCostGet3Min;4937,Microsoft.Compute/LowCostGet30Min;39916 status: code: 200 message: OK @@ -1142,9 +1142,9 @@ 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/snapshots/oSnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n @@ -1152,22 +1152,22 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n - \ \"sourceUniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\"\r\n },\r\n + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n + \ \"sourceUniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:26.400831+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:37.0794813+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\",\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1228' + - '1229' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:28 GMT + - Tue, 13 Apr 2021 07:26:40 GMT expires: - '-1' pragma: @@ -1184,7 +1184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4931,Microsoft.Compute/LowCostGet30Min;39931 + - Microsoft.Compute/LowCostGet3Min;4936,Microsoft.Compute/LowCostGet30Min;39915 status: code: 200 message: OK @@ -1203,14 +1203,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":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1219,7 +1219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:29 GMT + - Tue, 13 Apr 2021 07:26:41 GMT expires: - '-1' pragma: @@ -1252,7 +1252,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/disks/sDisk?api-version=2020-12-01 response: @@ -1261,12 +1261,12 @@ interactions: {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"sourceUniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\"\r\n },\r\n + \ \"sourceUniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\"\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/bd8aefe5-9fb2-4373-b32f-97de1a367872?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/094118dc-17a6-4315-8434-91b9920a1f29?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1274,11 +1274,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:34 GMT + - Tue, 13 Apr 2021 07:26:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/bd8aefe5-9fb2-4373-b32f-97de1a367872?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/094118dc-17a6-4315-8434-91b9920a1f29?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1289,9 +1289,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;989,Microsoft.Compute/CreateUpdateDisks30Min;7989 + - Microsoft.Compute/CreateUpdateDisks3Min;991,Microsoft.Compute/CreateUpdateDisks30Min;7991 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -1309,13 +1309,13 @@ 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/westus/DiskOperations/bd8aefe5-9fb2-4373-b32f-97de1a367872?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/094118dc-17a6-4315-8434-91b9920a1f29?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:34.3696702+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:34.8852544+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:26:45.751351+00:00\",\r\n \"endTime\": + \"2021-04-13T07:26:46.376316+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"sDisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -1323,23 +1323,23 @@ interactions: \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"sourceUniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\"\r\n },\r\n + \ \"sourceUniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\"\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-08T03:03:34.3696702+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:26:45.7669335+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"e77511ad-7365-420f-af9a-3e551cd9de6c\",\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"fb02e786-860c-4903-8775-1a46dfd506fe\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"bd8aefe5-9fb2-4373-b32f-97de1a367872\"\r\n}" + \ },\r\n \"name\": \"094118dc-17a6-4315-8434-91b9920a1f29\"\r\n}" headers: cache-control: - no-cache content-length: - - '1457' + - '1455' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:36 GMT + - Tue, 13 Apr 2021 07:26:48 GMT expires: - '-1' pragma: @@ -1356,7 +1356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49953,Microsoft.Compute/GetOperation30Min;399953 + - Microsoft.Compute/GetOperation3Min;49964,Microsoft.Compute/GetOperation30Min;399958 status: code: 200 message: OK @@ -1374,7 +1374,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/disks/sDisk?api-version=2020-12-01 response: @@ -1385,12 +1385,12 @@ interactions: \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"sourceUniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\"\r\n },\r\n + \ \"sourceUniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\"\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-08T03:03:34.3696702+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:26:45.7669335+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"e77511ad-7365-420f-af9a-3e551cd9de6c\",\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"fb02e786-860c-4903-8775-1a46dfd506fe\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -1400,7 +1400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:36 GMT + - Tue, 13 Apr 2021 07:26:48 GMT expires: - '-1' pragma: @@ -1417,7 +1417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4928,Microsoft.Compute/LowCostGet30Min;39928 + - Microsoft.Compute/LowCostGet3Min;4932,Microsoft.Compute/LowCostGet30Min;39911 status: code: 200 message: OK @@ -1435,12 +1435,12 @@ 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/snapshots/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298?api-version=2020-12-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298'' under resource group ''clitest.rg000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1451,7 +1451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:37 GMT + - Tue, 13 Apr 2021 07:26:48 GMT expires: - '-1' pragma: @@ -1479,22 +1479,22 @@ 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/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n + string: "{\r\n \"name\": \"vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:46.5877364+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:55.1248684+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\",\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}" headers: cache-control: @@ -1504,7 +1504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:37 GMT + - Tue, 13 Apr 2021 07:26:49 GMT expires: - '-1' pragma: @@ -1521,7 +1521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4925,Microsoft.Compute/LowCostGet30Min;39925 + - Microsoft.Compute/LowCostGet3Min;4931,Microsoft.Compute/LowCostGet30Min;39910 status: code: 200 message: OK @@ -1540,14 +1540,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":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1556,7 +1556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:38 GMT + - Tue, 13 Apr 2021 07:26:49 GMT expires: - '-1' pragma: @@ -1572,7 +1572,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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298"}}}' headers: Accept: - application/json @@ -1589,20 +1589,20 @@ 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/snapshots/dSnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": - {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n - \ \"sourceUniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\"\r\n },\r\n + {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n + \ \"sourceUniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\"\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/34608f38-caee-4cf4-8433-1cbbc8584370?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/19b8d9be-dc09-4fa5-83a9-c02588466ba1?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1610,11 +1610,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:44 GMT + - Tue, 13 Apr 2021 07:26:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/34608f38-caee-4cf4-8433-1cbbc8584370?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/19b8d9be-dc09-4fa5-83a9-c02588466ba1?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1625,9 +1625,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;994,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7994 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;993,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7993 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1645,35 +1645,35 @@ 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/westus/DiskOperations/34608f38-caee-4cf4-8433-1cbbc8584370?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/19b8d9be-dc09-4fa5-83a9-c02588466ba1?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:44.901086+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:45.4323377+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:26:54.4544449+00:00\",\r\n \"endTime\": + \"2021-04-13T07:26:54.9544274+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dSnapshot\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n - \ \"sourceUniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\"\r\n },\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n + \ \"sourceUniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\"\r\n },\r\n \ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:44.9167154+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:54.4544449+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\",\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"34608f38-caee-4cf4-8433-1cbbc8584370\"\r\n}" + \"19b8d9be-dc09-4fa5-83a9-c02588466ba1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1393' + - '1394' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:46 GMT + - Tue, 13 Apr 2021 07:26:57 GMT expires: - '-1' pragma: @@ -1690,7 +1690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49949,Microsoft.Compute/GetOperation30Min;399949 + - Microsoft.Compute/GetOperation3Min;49959,Microsoft.Compute/GetOperation30Min;399953 status: code: 200 message: OK @@ -1708,21 +1708,21 @@ 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/snapshots/dSnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"dSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n - \ \"sourceUniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\"\r\n },\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n + \ \"sourceUniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\"\r\n },\r\n \ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:44.9167154+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:54.4544449+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\",\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1732,7 +1732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:47 GMT + - Tue, 13 Apr 2021 07:26:57 GMT expires: - '-1' pragma: @@ -1749,7 +1749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4916,Microsoft.Compute/LowCostGet30Min;39916 + - Microsoft.Compute/LowCostGet3Min;4923,Microsoft.Compute/LowCostGet30Min;39902 status: code: 200 message: OK @@ -1767,21 +1767,21 @@ 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/snapshots/dSnapshot?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"dSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n - \ \"sourceUniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\"\r\n },\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n + \ \"sourceUniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\"\r\n },\r\n \ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:44.9167154+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:54.4544449+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\",\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1791,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:48 GMT + - Tue, 13 Apr 2021 07:26:58 GMT expires: - '-1' pragma: @@ -1808,7 +1808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4915,Microsoft.Compute/LowCostGet30Min;39915 + - Microsoft.Compute/LowCostGet3Min;4921,Microsoft.Compute/LowCostGet30Min;39900 status: code: 200 message: OK @@ -1827,14 +1827,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":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1843,7 +1843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:49 GMT + - Tue, 13 Apr 2021 07:26:58 GMT expires: - '-1' pragma: @@ -1876,7 +1876,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/disks/dDisk?api-version=2020-12-01 response: @@ -1885,12 +1885,12 @@ interactions: {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"sourceUniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\"\r\n },\r\n + \ \"sourceUniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\"\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/2fe67f52-98d1-48cc-906c-ab53a05af6df?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bcab9d2-9305-4179-986e-36c06ca4f087?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1898,11 +1898,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:53 GMT + - Tue, 13 Apr 2021 07:27:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2fe67f52-98d1-48cc-906c-ab53a05af6df?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bcab9d2-9305-4179-986e-36c06ca4f087?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1913,9 +1913,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;988,Microsoft.Compute/CreateUpdateDisks30Min;7988 + - Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7990 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 202 message: Accepted @@ -1933,27 +1933,27 @@ 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/westus/DiskOperations/2fe67f52-98d1-48cc-906c-ab53a05af6df?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bcab9d2-9305-4179-986e-36c06ca4f087?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:53.5260887+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:54.2448312+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:27:03.8450855+00:00\",\r\n \"endTime\": + \"2021-04-13T07:27:04.3450845+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dDisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\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 \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"sourceUniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\"\r\n },\r\n + \ \"sourceUniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\"\r\n },\r\n \ \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:03:53.5417139+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:27:03.8607258+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"2461dcaa-e4cc-4f81-9417-01b0001984ff\",\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"f899998f-a81f-4e23-b7f9-1bf65651ab0c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"2fe67f52-98d1-48cc-906c-ab53a05af6df\"\r\n}" + \ },\r\n \"name\": \"1bcab9d2-9305-4179-986e-36c06ca4f087\"\r\n}" headers: cache-control: - no-cache @@ -1962,7 +1962,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:55 GMT + - Tue, 13 Apr 2021 07:27:06 GMT expires: - '-1' pragma: @@ -1979,7 +1979,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49945,Microsoft.Compute/GetOperation30Min;399945 + - Microsoft.Compute/GetOperation3Min;49956,Microsoft.Compute/GetOperation30Min;399947 status: code: 200 message: OK @@ -1997,7 +1997,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/disks/dDisk?api-version=2020-12-01 response: @@ -2007,12 +2007,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"sourceUniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\"\r\n },\r\n + \ \"sourceUniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\"\r\n },\r\n \ \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:03:53.5417139+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:27:03.8607258+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"2461dcaa-e4cc-4f81-9417-01b0001984ff\",\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"f899998f-a81f-4e23-b7f9-1bf65651ab0c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}" headers: cache-control: @@ -2022,7 +2022,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:55 GMT + - Tue, 13 Apr 2021 07:27:06 GMT expires: - '-1' pragma: @@ -2039,7 +2039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4912,Microsoft.Compute/LowCostGet30Min;39912 + - Microsoft.Compute/LowCostGet3Min;4917,Microsoft.Compute/LowCostGet30Min;39891 status: code: 200 message: OK @@ -2059,14 +2059,14 @@ interactions: --os-type --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":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2075,7 +2075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:56 GMT + - Tue, 13 Apr 2021 07:27:06 GMT expires: - '-1' pragma: @@ -2104,21 +2104,21 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type --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/\\\"eb140a2b-edab-4d53-bbba-3b4357d5427a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c0d05bff-acdb-45a4-888a-5c69ce4b01c0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"1fd7739f-4931-4450-9018-e8ccc0efd417\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"bd3eef29-5274-4ea7-ac14-189d669a3209\",\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/\\\"eb140a2b-edab-4d53-bbba-3b4357d5427a\\\"\",\r\n + \ \"etag\": \"W/\\\"c0d05bff-acdb-45a4-888a-5c69ce4b01c0\\\"\",\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 @@ -2134,7 +2134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:56 GMT + - Tue, 13 Apr 2021 07:27:08 GMT expires: - '-1' pragma: @@ -2151,7 +2151,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b69084a-6283-4983-b08e-a524080ef342 + - 0e4b7e13-b35e-428e-85e8-4f613f219a06 status: code: 200 message: OK @@ -2197,25 +2197,25 @@ interactions: --os-type --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_57y5UKTXd9m1znKMuocpFaXOUFumX599","name":"vm_deploy_57y5UKTXd9m1znKMuocpFaXOUFumX599","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17705645456817134641","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:04:02.8147796Z","duration":"PT2.7394159S","correlationId":"069f89da-5078-49fb-9cb4-7d1d72f70a37","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/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR","name":"vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7842092925336686369","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-13T07:27:11.5582055Z","duration":"PT1.9728701S","correlationId":"b7d04ae2-bcc5-404d-9ac1-fb1ac1b57e62","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/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_57y5UKTXd9m1znKMuocpFaXOUFumX599/operationStatuses/08585837558454022640?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR/operationStatuses/08585833080558922956?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2405' + - '2404' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:03 GMT + - Tue, 13 Apr 2021 07:27:12 GMT expires: - '-1' pragma: @@ -2225,7 +2225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -2245,9 +2245,9 @@ interactions: --os-type --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/08585837558454022640?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/08585833080558922956?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -2259,7 +2259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:34 GMT + - Tue, 13 Apr 2021 07:27:44 GMT expires: - '-1' pragma: @@ -2289,9 +2289,9 @@ interactions: --os-type --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/08585837558454022640?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/08585833080558922956?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2303,7 +2303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:05:04 GMT + - Tue, 13 Apr 2021 07:28:14 GMT expires: - '-1' pragma: @@ -2333,21 +2333,21 @@ interactions: --os-type --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_57y5UKTXd9m1znKMuocpFaXOUFumX599","name":"vm_deploy_57y5UKTXd9m1znKMuocpFaXOUFumX599","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17705645456817134641","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:04:58.5940523Z","duration":"PT58.5186886S","correlationId":"069f89da-5078-49fb-9cb4-7d1d72f70a37","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/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR","name":"vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7842092925336686369","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-13T07:27:50.0355486Z","duration":"PT40.4502132S","correlationId":"b7d04ae2-bcc5-404d-9ac1-fb1ac1b57e62","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/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3266' + - '3265' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:05:05 GMT + - Tue, 13 Apr 2021 07:28:14 GMT expires: - '-1' pragma: @@ -2376,24 +2376,24 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type --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/vm2?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cc35d5bf-1931-42ff-82ac-24ed9ca098ed\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3f8c8723-ccb6-4da3-9fa7-3756a09e5c9c\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\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/sDisk\"\r\n \ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\",\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/vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\"\r\n \ },\r\n \"diskSizeGB\": 3,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": @@ -2406,37 +2406,37 @@ 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-08T03:05:07+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-13T07:28:16+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"sDisk\",\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:04:36.8111464+00:00\"\r\n }\r\n ]\r\n - \ },\r\n {\r\n \"name\": \"vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\",\r\n + \"2021-04-13T07:27:34.555236+00:00\"\r\n }\r\n ]\r\n },\r\n + \ {\r\n \"name\": \"vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\",\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:04:36.8111464+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-13T07:27:34.555236+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"dDisk\",\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:04:36.8111464+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:04:55.077585+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}" + \"2021-04-13T07:27:34.555236+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:27:46.8525838+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: - - '4192' + - '4190' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:05:07 GMT + - Tue, 13 Apr 2021 07:28:15 GMT expires: - '-1' pragma: @@ -2453,7 +2453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31980 + - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31935 status: code: 200 message: OK @@ -2472,18 +2472,18 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type --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/vm2VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"3ca8580f-a80a-4338-9467-0db09d77dd6e\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ab3cba0a-96ae-4da1-a6a5-27cdabe0f28b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"077fce1c-60dc-489d-8479-6afd08bb0c11\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"3c5ba471-b7c8-4630-9278-0ccb0908a506\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"3ca8580f-a80a-4338-9467-0db09d77dd6e\\\"\",\r\n + \ \"etag\": \"W/\\\"ab3cba0a-96ae-4da1-a6a5-27cdabe0f28b\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2492,8 +2492,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\": - \"t3z3ohzrjfiejeay3dgmb14uch.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-02-C1-7C\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"fhxt3plukktu3laudcowngrsbb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-03-B1-12\",\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/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2507,9 +2507,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:05:07 GMT + - Tue, 13 Apr 2021 07:28:16 GMT etag: - - W/"3ca8580f-a80a-4338-9467-0db09d77dd6e" + - W/"ab3cba0a-96ae-4da1-a6a5-27cdabe0f28b" expires: - '-1' pragma: @@ -2526,7 +2526,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 04bcf8a2-1786-4cf6-b4c0-0fab795f22b2 + - 6d82c1c6-0536-40eb-a053-63c88e9a742e status: code: 200 message: OK @@ -2545,17 +2545,17 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type --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/vm2PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"f09194ce-02c4-41e0-b71a-52610255128c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"2a99b202-a725-49d3-a1fd-235253faebf4\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2fc1ce6f-6e8f-420c-989f-acd0d87b6882\",\r\n - \ \"ipAddress\": \"40.78.120.223\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"70d7191a-76ee-4edd-8014-959b36dc6075\",\r\n + \ \"ipAddress\": \"138.91.187.211\",\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/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -2563,13 +2563,13 @@ interactions: cache-control: - no-cache content-length: - - '997' + - '998' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:05:07 GMT + - Tue, 13 Apr 2021 07:28:16 GMT etag: - - W/"f09194ce-02c4-41e0-b71a-52610255128c" + - W/"2a99b202-a725-49d3-a1fd-235253faebf4" expires: - '-1' pragma: @@ -2586,7 +2586,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b57db583-4db1-43c2-a66d-af21598bf1fd + - e4bd6f8e-192d-4b6f-a5a5-57f96760c9ac status: code: 200 message: OK @@ -2604,24 +2604,24 @@ 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/virtualMachines/vm2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cc35d5bf-1931-42ff-82ac-24ed9ca098ed\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3f8c8723-ccb6-4da3-9fa7-3756a09e5c9c\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\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/sDisk\"\r\n \ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\",\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/vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\"\r\n \ },\r\n \"diskSizeGB\": 3,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": @@ -2638,7 +2638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:05:09 GMT + - Tue, 13 Apr 2021 07:28:16 GMT expires: - '-1' pragma: @@ -2655,7 +2655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31979 + - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31934 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_create_with_standard_zrs_sku.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_create_with_standard_zrs_sku.yaml index 78aa123b8c5..a3ebbd5d134 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_create_with_standard_zrs_sku.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_create_with_standard_zrs_sku.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-std_zrs000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001","name":"cli-test-std_zrs000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:03:35Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001","name":"cli-test-std_zrs000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"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:03:38 GMT + - Tue, 13 Apr 2021 07:24:18 GMT expires: - '-1' pragma: @@ -63,7 +63,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -75,7 +75,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/62a7a8ea-e748-42c4-9756-c1e283668095?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/661c4fc9-253a-4c18-ba53-44829a7e0684?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -83,11 +83,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:43 GMT + - Tue, 13 Apr 2021 07:24:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/62a7a8ea-e748-42c4-9756-c1e283668095?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/661c4fc9-253a-4c18-ba53-44829a7e0684?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -118,13 +118,13 @@ interactions: ParameterSetName: - -g -n --size-gb 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/62a7a8ea-e748-42c4-9756-c1e283668095?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/661c4fc9-253a-4c18-ba53-44829a7e0684?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:43.9282844+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:44.0219939+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:24:25.2919013+00:00\",\r\n \"endTime\": + \"2021-04-13T07:24:25.4481365+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-std_zrs000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -133,10 +133,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 4,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-08T03:03:43.9438636+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:24:25.2919013+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 4294967296,\r\n - \ \"uniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}\r\n },\r\n \"name\": \"62a7a8ea-e748-42c4-9756-c1e283668095\"\r\n}" + \ \"uniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}\r\n },\r\n \"name\": \"661c4fc9-253a-4c18-ba53-44829a7e0684\"\r\n}" headers: cache-control: - no-cache @@ -145,7 +145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:46 GMT + - Tue, 13 Apr 2021 07:24:27 GMT expires: - '-1' pragma: @@ -162,7 +162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -180,7 +180,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -192,9 +192,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 4,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-08T03:03:43.9438636+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:24:25.2919013+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 4294967296,\r\n - \ \"uniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}" headers: cache-control: @@ -204,7 +204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:46 GMT + - Tue, 13 Apr 2021 07:24:27 GMT expires: - '-1' pragma: @@ -221,7 +221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14978,Microsoft.Compute/LowCostGet30Min;119978 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 status: code: 200 message: OK @@ -239,9 +239,9 @@ interactions: ParameterSetName: - -g -n --source --sku 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/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' @@ -255,7 +255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:47 GMT + - Tue, 13 Apr 2021 07:24:28 GMT expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: ParameterSetName: - -g -n --source --sku 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/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -295,9 +295,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 4,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-08T03:03:43.9438636+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:24:25.2919013+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 4294967296,\r\n - \ \"uniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}" headers: cache-control: @@ -307,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:48 GMT + - Tue, 13 Apr 2021 07:24:28 GMT expires: - '-1' pragma: @@ -324,7 +324,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14977,Microsoft.Compute/LowCostGet30Min;119977 + - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998 status: code: 200 message: OK @@ -343,14 +343,14 @@ interactions: - -g -n --source --sku User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-std_zrs000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001","name":"cli-test-std_zrs000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:03:35Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001","name":"cli-test-std_zrs000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:47 GMT + - Tue, 13 Apr 2021 07:24:29 GMT expires: - '-1' pragma: @@ -392,20 +392,20 @@ interactions: ParameterSetName: - -g -n --source --sku 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/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\"\r\n },\r\n + \ \"sourceUniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\"\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/f93e0677-06b2-4131-943d-3baccfd5df1a?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8cb70264-c271-4378-afc5-add171fdb2d1?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -413,11 +413,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:53 GMT + - Tue, 13 Apr 2021 07:24:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f93e0677-06b2-4131-943d-3baccfd5df1a?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8cb70264-c271-4378-afc5-add171fdb2d1?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -428,9 +428,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -448,35 +448,35 @@ interactions: ParameterSetName: - -g -n --source --sku 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/f93e0677-06b2-4131-943d-3baccfd5df1a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8cb70264-c271-4378-afc5-add171fdb2d1?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:53.8975253+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:54.7725362+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:24:35.6047875+00:00\",\r\n \"endTime\": + \"2021-04-13T07:24:36.667314+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-std_zrs000001/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_ZRS\",\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-std_zrs000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\"\r\n },\r\n + \ \"sourceUniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\"\r\n },\r\n \ \"diskSizeGB\": 4,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:53.9131526+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:24:35.6047875+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"8b087130-a49a-40ce-85d2-3bfaa1872edc\",\r\n + \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"a1786cce-9e20-45bd-8f87-5cb389b4848d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"f93e0677-06b2-4131-943d-3baccfd5df1a\"\r\n}" + \"8cb70264-c271-4378-afc5-add171fdb2d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1341' + - '1340' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:56 GMT + - Tue, 13 Apr 2021 07:24:38 GMT expires: - '-1' pragma: @@ -493,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -511,9 +511,9 @@ interactions: ParameterSetName: - -g -n --source --sku 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/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -521,11 +521,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\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-std_zrs000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\"\r\n },\r\n + \ \"sourceUniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\"\r\n },\r\n \ \"diskSizeGB\": 4,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:53.9131526+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:24:35.6047875+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"8b087130-a49a-40ce-85d2-3bfaa1872edc\",\r\n + \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"a1786cce-9e20-45bd-8f87-5cb389b4848d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -535,7 +535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:56 GMT + - Tue, 13 Apr 2021 07:24:38 GMT expires: - '-1' pragma: @@ -552,7 +552,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14970,Microsoft.Compute/LowCostGet30Min;119970 + - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119994 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml index 977a7e4b9e9..99c059d32d1 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"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:09 GMT + - Tue, 13 Apr 2021 07:24:19 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -78,7 +78,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f94ef4cd-0c60-4366-9089-56c2eadb9c9b?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -86,11 +86,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:14 GMT + - Tue, 13 Apr 2021 07:24:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f94ef4cd-0c60-4366-9089-56c2eadb9c9b?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -101,9 +101,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -121,13 +121,13 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.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/westus/DiskOperations/f94ef4cd-0c60-4366-9089-56c2eadb9c9b?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:15.4626366+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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-08T03:01:14.5095315+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"f94ef4cd-0c60-4366-9089-56c2eadb9c9b\"\r\n}" + \"02ee5c7b-4aee-4a54-991a-2369efcf3a5f\"\r\n}" headers: cache-control: - no-cache @@ -150,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:16 GMT + - Tue, 13 Apr 2021 07:24:26 GMT expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399992 status: code: 200 message: OK @@ -185,7 +185,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -198,9 +198,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:16 GMT + - Tue, 13 Apr 2021 07:24:26 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39999 + - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39969 status: code: 200 message: OK @@ -245,7 +245,7 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -258,9 +258,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:18 GMT + - Tue, 13 Apr 2021 07:24:28 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39997 + - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39967 status: code: 200 message: OK @@ -313,7 +313,7 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -329,7 +329,7 @@ interactions: \ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a392bd83-78c2-4018-a0ed-5c460a052ad9?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -337,11 +337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:18 GMT + - Tue, 13 Apr 2021 07:24:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a392bd83-78c2-4018-a0ed-5c460a052ad9?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -372,13 +372,13 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/DiskOperations/a392bd83-78c2-4018-a0ed-5c460a052ad9?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:19.4938815+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:19.6345054+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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-08T03:01:14.5095315+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"a392bd83-78c2-4018-a0ed-5c460a052ad9\"\r\n}" + \"493c6750-8a12-421e-997c-413d0f4cfa64\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:21 GMT + - Tue, 13 Apr 2021 07:24:32 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;399995 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -436,7 +436,7 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -449,9 +449,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -461,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:21 GMT + - Tue, 13 Apr 2021 07:24:32 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;39993 + - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39964 status: code: 200 message: OK @@ -497,14 +497,14 @@ interactions: - -g -n --image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -513,7 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:22 GMT + - Tue, 13 Apr 2021 07:24:32 GMT expires: - '-1' pragma: @@ -546,7 +546,7 @@ interactions: ParameterSetName: - -g -n --image-reference 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: @@ -560,7 +560,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0af8196-b263-4d60-8ca7-fa5a7552f473?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -568,11 +568,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:26 GMT + - Tue, 13 Apr 2021 07:24:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0af8196-b263-4d60-8ca7-fa5a7552f473?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -583,7 +583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994 + - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -603,13 +603,13 @@ interactions: ParameterSetName: - -g -n --image-reference 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/westus/DiskOperations/f0af8196-b263-4d60-8ca7-fa5a7552f473?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:26.2751545+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:27.1970348+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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-08T03:01:26.2907811+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:36.0143331+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e61e381e-14bd-43e4-beb8-579ce1aa2088\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"ee8e01f1-b741-4f60-bce1-23ee92fb5f15\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"f0af8196-b263-4d60-8ca7-fa5a7552f473\"\r\n}" + \ },\r\n \"name\": \"8a117af4-3a69-45d3-acd3-0a61f5d9b26a\"\r\n}" headers: cache-control: - no-cache @@ -632,7 +632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:28 GMT + - Tue, 13 Apr 2021 07:24:37 GMT expires: - '-1' pragma: @@ -649,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399985 status: code: 200 message: OK @@ -667,7 +667,7 @@ interactions: ParameterSetName: - -g -n --image-reference 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: @@ -680,9 +680,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:26.2907811+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:36.0143331+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e61e381e-14bd-43e4-beb8-579ce1aa2088\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"ee8e01f1-b741-4f60-bce1-23ee92fb5f15\",\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: - - Thu, 08 Apr 2021 03:01:28 GMT + - Tue, 13 Apr 2021 07:24:38 GMT expires: - '-1' pragma: @@ -709,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39984 + - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39958 status: code: 200 message: OK @@ -728,14 +728,14 @@ interactions: - -g -n --image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -744,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:29 GMT + - Tue, 13 Apr 2021 07:24:38 GMT expires: - '-1' pragma: @@ -772,7 +772,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002180?api-version=2020-12-01 response: @@ -792,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:30 GMT + - Tue, 13 Apr 2021 07:24:40 GMT expires: - '-1' pragma: @@ -832,7 +832,7 @@ interactions: ParameterSetName: - -g -n --image-reference 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: @@ -846,7 +846,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/be339576-1413-4f53-9f4e-561914b80398?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -854,11 +854,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:36 GMT + - Tue, 13 Apr 2021 07:24:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/be339576-1413-4f53-9f4e-561914b80398?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -869,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993 + - Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -889,13 +889,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/westus/DiskOperations/be339576-1413-4f53-9f4e-561914b80398?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:36.4938927+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:37.1189069+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -905,11 +905,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:36.4938927+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:45.2018146+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"d4e68e14-1fbc-47fe-ae88-755abcdf6935\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1d458077-8609-417f-867a-3959e089a629\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"be339576-1413-4f53-9f4e-561914b80398\"\r\n}" + \ },\r\n \"name\": \"ade377c5-52be-4908-9823-908b70446770\"\r\n}" headers: cache-control: - no-cache @@ -918,7 +918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:38 GMT + - Tue, 13 Apr 2021 07:24:47 GMT expires: - '-1' pragma: @@ -935,7 +935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399983 status: code: 200 message: OK @@ -953,7 +953,7 @@ interactions: ParameterSetName: - -g -n --image-reference 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: @@ -966,9 +966,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:36.4938927+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:45.2018146+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"d4e68e14-1fbc-47fe-ae88-755abcdf6935\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1d458077-8609-417f-867a-3959e089a629\",\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: - - Thu, 08 Apr 2021 03:01:38 GMT + - Tue, 13 Apr 2021 07:24:47 GMT expires: - '-1' pragma: @@ -995,7 +995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39977 + - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39954 status: code: 200 message: OK @@ -1014,14 +1014,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1030,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:40 GMT + - Tue, 13 Apr 2021 07:24:48 GMT expires: - '-1' pragma: @@ -1062,7 +1062,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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1070,11 +1070,11 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G17XCH5UU7M2CKXHWUII\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1F7M3ETXHMFW3DBDZUD\"\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/38e0f1bf-1946-482f-bb18-9151d0ec9a9f?api-version=2019-12-01 + - 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 cache-control: - no-cache content-length: @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:46 GMT + - Tue, 13 Apr 2021 07:24:54 GMT expires: - '-1' pragma: @@ -1095,9 +1095,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1115,23 +1115,23 @@ 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/westus/capsOperations/38e0f1bf-1946-482f-bb18-9151d0ec9a9f?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:45.30717+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:45.5884415+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"38e0f1bf-1946-482f-bb18-9151d0ec9a9f\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '182' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:17 GMT + - Tue, 13 Apr 2021 07:25:25 GMT expires: - '-1' pragma: @@ -1148,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195 status: code: 200 message: OK @@ -1166,7 +1166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1174,7 +1174,7 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G17XCH5UU7M2CKXHWUII\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1F7M3ETXHMFW3DBDZUD\"\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: - - Thu, 08 Apr 2021 03:02:17 GMT + - Tue, 13 Apr 2021 07:25:25 GMT expires: - '-1' pragma: @@ -1201,7 +1201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;340,Microsoft.Compute/GetGallery30Min;2490 status: code: 200 message: OK @@ -1221,14 +1221,14 @@ interactions: --hyper-v-generation User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1237,7 +1237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:18 GMT + - Tue, 13 Apr 2021 07:25:25 GMT expires: - '-1' pragma: @@ -1273,7 +1273,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: @@ -1288,7 +1288,7 @@ interactions: \ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/737a7872-b44b-4124-b698-666847c27e32?api-version=2020-09-30 + - 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 cache-control: - no-cache content-length: @@ -1296,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:24 GMT + - Tue, 13 Apr 2021 07:25:30 GMT expires: - '-1' pragma: @@ -1309,7 +1309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1330,14 +1330,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.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/westus/capsOperations/737a7872-b44b-4124-b698-666847c27e32?api-version=2020-09-30 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:02:23.9791318+00:00\",\r\n \"endTime\": - \"2021-04-08T03:02:24.1041347+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"737a7872-b44b-4124-b698-666847c27e32\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -1346,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:54 GMT + - Tue, 13 Apr 2021 07:26:01 GMT expires: - '-1' pragma: @@ -1363,7 +1363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -1382,7 +1382,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: @@ -1403,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:54 GMT + - Tue, 13 Apr 2021 07:26:01 GMT expires: - '-1' pragma: @@ -1420,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2990 status: code: 200 message: OK @@ -1439,14 +1439,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1455,7 +1455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:56 GMT + - Tue, 13 Apr 2021 07:26:02 GMT expires: - '-1' pragma: @@ -1488,7 +1488,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01 response: @@ -1500,7 +1500,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/00ce9c68-7e75-4fcf-91da-1e4bd9806219?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -1508,11 +1508,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:57 GMT + - Tue, 13 Apr 2021 07:26:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/00ce9c68-7e75-4fcf-91da-1e4bd9806219?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -1523,9 +1523,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;991,Microsoft.Compute/CreateUpdateDisks30Min;7991 + - Microsoft.Compute/CreateUpdateDisks3Min;992,Microsoft.Compute/CreateUpdateDisks30Min;7992 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 202 message: Accepted @@ -1543,13 +1543,13 @@ interactions: ParameterSetName: - -g -n --size-gb 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/westus/DiskOperations/00ce9c68-7e75-4fcf-91da-1e4bd9806219?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:02:58.2126994+00:00\",\r\n \"endTime\": - \"2021-04-08T03:02:58.3220892+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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-08T03:02:58.2126994+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:26:06.7498037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"00ce9c68-7e75-4fcf-91da-1e4bd9806219\"\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}" headers: cache-control: - no-cache @@ -1570,7 +1570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:00 GMT + - Tue, 13 Apr 2021 07:26:09 GMT expires: - '-1' pragma: @@ -1587,7 +1587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49965,Microsoft.Compute/GetOperation30Min;399965 + - Microsoft.Compute/GetOperation3Min;49974,Microsoft.Compute/GetOperation30Min;399968 status: code: 200 message: OK @@ -1605,7 +1605,7 @@ interactions: ParameterSetName: - -g -n --size-gb 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01 response: @@ -1617,9 +1617,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-08T03:02:58.2126994+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:26:06.7498037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\",\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: - - Thu, 08 Apr 2021 03:03:00 GMT + - Tue, 13 Apr 2021 07:26:09 GMT expires: - '-1' pragma: @@ -1646,7 +1646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4948,Microsoft.Compute/LowCostGet30Min;39948 + - Microsoft.Compute/LowCostGet3Min;4953,Microsoft.Compute/LowCostGet30Min;39932 status: code: 200 message: OK @@ -1664,9 +1664,9 @@ 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/disk'' @@ -1680,7 +1680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:01 GMT + - Tue, 13 Apr 2021 07:26:10 GMT expires: - '-1' pragma: @@ -1708,7 +1708,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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01 response: @@ -1720,9 +1720,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-08T03:02:58.2126994+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:26:06.7498037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\",\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: - - Thu, 08 Apr 2021 03:03:01 GMT + - Tue, 13 Apr 2021 07:26:10 GMT expires: - '-1' pragma: @@ -1749,7 +1749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4947,Microsoft.Compute/LowCostGet30Min;39947 + - Microsoft.Compute/LowCostGet3Min;4952,Microsoft.Compute/LowCostGet30Min;39931 status: code: 200 message: OK @@ -1768,14 +1768,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1784,7 +1784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:01 GMT + - Tue, 13 Apr 2021 07:26:10 GMT expires: - '-1' pragma: @@ -1817,20 +1817,20 @@ 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\"\r\n },\r\n + \ \"sourceUniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\"\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/68bda4d6-8610-40ad-b834-bee80a855f4f?api-version=2020-05-01 + - 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 cache-control: - no-cache content-length: @@ -1838,11 +1838,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:06 GMT + - Tue, 13 Apr 2021 07:26:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/68bda4d6-8610-40ad-b834-bee80a855f4f?monitor=true&api-version=2020-05-01 + - 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 pragma: - no-cache server: @@ -1855,7 +1855,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;996,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -1873,26 +1873,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/providers/Microsoft.Compute/locations/westus/DiskOperations/68bda4d6-8610-40ad-b834-bee80a855f4f?api-version=2020-05-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:06.8063916+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:07.5564107+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\"\r\n },\r\n + \ \"sourceUniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:06.8220147+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:15.4685198+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a04e4764-3c69-467c-9291-697d4e1eec85\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"250287fa-7cf3-4ae2-b582-9f39b66b785b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"68bda4d6-8610-40ad-b834-bee80a855f4f\"\r\n}" + \"4a08e6cd-3827-4c8b-8521-00109dbd651a\"\r\n}" headers: cache-control: - no-cache @@ -1901,7 +1901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:08 GMT + - Tue, 13 Apr 2021 07:26:17 GMT expires: - '-1' pragma: @@ -1918,7 +1918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49962,Microsoft.Compute/GetOperation30Min;399962 + - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399966 status: code: 200 message: OK @@ -1936,9 +1936,9 @@ 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1946,11 +1946,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\"\r\n },\r\n + \ \"sourceUniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:06.8220147+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:15.4685198+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a04e4764-3c69-467c-9291-697d4e1eec85\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"250287fa-7cf3-4ae2-b582-9f39b66b785b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1960,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:08 GMT + - Tue, 13 Apr 2021 07:26:18 GMT expires: - '-1' pragma: @@ -1977,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4938,Microsoft.Compute/LowCostGet30Min;39938 + - Microsoft.Compute/LowCostGet3Min;4948,Microsoft.Compute/LowCostGet30Min;39927 status: code: 200 message: OK @@ -1996,14 +1996,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:10 GMT + - Tue, 13 Apr 2021 07:26:18 GMT expires: - '-1' pragma: @@ -2046,7 +2046,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 response: @@ -2057,7 +2057,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:24.2999036+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/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01 + - 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 cache-control: - no-cache content-length: @@ -2073,7 +2073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:16 GMT + - Tue, 13 Apr 2021 07:26:25 GMT expires: - '-1' pragma: @@ -2106,22 +2106,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot 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/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:17 GMT + - Tue, 13 Apr 2021 07:27:25 GMT expires: - '-1' pragma: @@ -2138,7 +2138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190 status: code: 200 message: OK @@ -2156,22 +2156,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot 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/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:05:17 GMT + - Tue, 13 Apr 2021 07:28:25 GMT expires: - '-1' pragma: @@ -2188,7 +2188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2206,22 +2206,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot 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/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:06:18 GMT + - Tue, 13 Apr 2021 07:29:26 GMT expires: - '-1' pragma: @@ -2238,7 +2238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4183 status: code: 200 message: OK @@ -2256,22 +2256,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot 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/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:19 GMT + - Tue, 13 Apr 2021 07:30:27 GMT expires: - '-1' pragma: @@ -2288,7 +2288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4179 status: code: 200 message: OK @@ -2306,22 +2306,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot 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/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:19 GMT + - Tue, 13 Apr 2021 07:31:27 GMT expires: - '-1' pragma: @@ -2338,7 +2338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4175 status: code: 200 message: OK @@ -2356,23 +2356,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot 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/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"endTime\": - \"2021-04-08T03:09:15.9171245+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}" + 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}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:20 GMT + - Tue, 13 Apr 2021 07:32:28 GMT expires: - '-1' pragma: @@ -2389,7 +2389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 status: code: 200 message: OK @@ -2407,7 +2407,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 response: @@ -2418,7 +2418,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:24.2999036+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 +2432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:21 GMT + - Tue, 13 Apr 2021 07:32:28 GMT expires: - '-1' pragma: @@ -2449,7 +2449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9992 status: code: 200 message: OK @@ -2468,14 +2468,14 @@ interactions: - -g -n --gallery-image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"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-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2484,7 +2484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:21 GMT + - Tue, 13 Apr 2021 07:32:29 GMT expires: - '-1' pragma: @@ -2518,7 +2518,7 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-12-01 response: @@ -2532,7 +2532,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0275ba6b-1e39-45e8-9984-856bfa9ae9b0?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -2540,11 +2540,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:26 GMT + - Tue, 13 Apr 2021 07:32:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0275ba6b-1e39-45e8-9984-856bfa9ae9b0?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -2555,9 +2555,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7984 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7987 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 202 message: Accepted @@ -2575,13 +2575,13 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference 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/westus/DiskOperations/0275ba6b-1e39-45e8-9984-856bfa9ae9b0?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:09:26.3104422+00:00\",\r\n \"endTime\": - \"2021-04-08T03:09:26.857336+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -2592,20 +2592,20 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:09:26.34169+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:32:34.6305109+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"cf2b5489-af3b-488b-a57e-966af0adab82\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a0e5e42a-fb11-4d85-b0fa-deeef184013f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"0275ba6b-1e39-45e8-9984-856bfa9ae9b0\"\r\n}" + \ },\r\n \"name\": \"f45fc13e-397b-460f-865f-1f92be24cdd1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1742' + - '1745' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:28 GMT + - Tue, 13 Apr 2021 07:32:36 GMT expires: - '-1' pragma: @@ -2622,7 +2622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399895 + - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399907 status: code: 200 message: OK @@ -2640,7 +2640,7 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-12-01 response: @@ -2654,19 +2654,19 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:09:26.34169+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:32:34.6305109+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"cf2b5489-af3b-488b-a57e-966af0adab82\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a0e5e42a-fb11-4d85-b0fa-deeef184013f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1518' + - '1520' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:28 GMT + - Tue, 13 Apr 2021 07:32:36 GMT expires: - '-1' pragma: @@ -2683,7 +2683,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39880 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39864 status: code: 200 message: OK @@ -2707,7 +2707,7 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: @@ -2720,7 +2720,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/7271b0aa-6ad4-485f-882e-976ac4d34fcf?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -2728,11 +2728,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:32 GMT + - Tue, 13 Apr 2021 07:32:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/7271b0aa-6ad4-485f-882e-976ac4d34fcf?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -2743,9 +2743,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7994 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1197' status: code: 202 message: Accepted @@ -2763,13 +2763,13 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l 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/centraluseuap/DiskOperations/7271b0aa-6ad4-485f-882e-976ac4d34fcf?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:09:32.9914461+00:00\",\r\n \"endTime\": - \"2021-04-08T03:09:33.1814141+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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 +2778,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n + 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"7271b0aa-6ad4-485f-882e-976ac4d34fcf\"\r\n}" + \ },\r\n \"name\": \"f007126a-05ab-4d67-929e-79066c0bd91a\"\r\n}" headers: cache-control: - no-cache @@ -2791,7 +2791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:35 GMT + - Tue, 13 Apr 2021 07:32:45 GMT expires: - '-1' pragma: @@ -2808,7 +2808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399973 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399972 status: code: 200 message: OK @@ -2826,7 +2826,7 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: @@ -2838,9 +2838,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n + 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2850,7 +2850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:35 GMT + - Tue, 13 Apr 2021 07:32:45 GMT expires: - '-1' pragma: @@ -2867,7 +2867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119963 + - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119966 status: code: 200 message: OK @@ -2885,7 +2885,7 @@ interactions: ParameterSetName: - -g -n --max-shares 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: @@ -2897,9 +2897,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n + 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2909,7 +2909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:37 GMT + - Tue, 13 Apr 2021 07:32:46 GMT expires: - '-1' pragma: @@ -2926,7 +2926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119962 + - Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119965 status: code: 200 message: OK @@ -2952,7 +2952,7 @@ interactions: ParameterSetName: - -g -n --max-shares 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: @@ -2966,7 +2966,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/fba7a626-e247-408b-aa61-65580d83d8ce?api-version=2020-12-01 + - 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 cache-control: - no-cache content-length: @@ -2974,11 +2974,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:38 GMT + - Tue, 13 Apr 2021 07:32:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/fba7a626-e247-408b-aa61-65580d83d8ce?monitor=true&api-version=2020-12-01 + - 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 pragma: - no-cache server: @@ -2989,9 +2989,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7993 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 202 message: Accepted @@ -3009,13 +3009,13 @@ interactions: ParameterSetName: - -g -n --max-shares 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/centraluseuap/DiskOperations/fba7a626-e247-408b-aa61-65580d83d8ce?api-version=2020-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:09:39.4869824+00:00\",\r\n \"endTime\": - \"2021-04-08T03:09:39.6325746+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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,11 +3024,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n + 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"fba7a626-e247-408b-aa61-65580d83d8ce\"\r\n}" + \ },\r\n \"name\": \"20d44225-ec49-49e2-b091-e50ed385b20c\"\r\n}" headers: cache-control: - no-cache @@ -3037,7 +3037,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:41 GMT + - Tue, 13 Apr 2021 07:32:52 GMT expires: - '-1' pragma: @@ -3054,7 +3054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399971 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399970 status: code: 200 message: OK @@ -3072,7 +3072,7 @@ interactions: ParameterSetName: - -g -n --max-shares 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/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: @@ -3084,9 +3084,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n + 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3096,7 +3096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:42 GMT + - Tue, 13 Apr 2021 07:32:52 GMT expires: - '-1' pragma: @@ -3113,7 +3113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14979,Microsoft.Compute/LowCostGet30Min;119960 + - Microsoft.Compute/LowCostGet3Min;14985,Microsoft.Compute/LowCostGet30Min;119963 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_extended_location.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_extended_location.yaml new file mode 100644 index 00000000000..d2990a41031 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_extended_location.yaml @@ -0,0 +1,734 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001","name":"cli_test_vm_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T06:53:21Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:53:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n + \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": + \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n + \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n + \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": + \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": + \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": + \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": + {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n + \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n + \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": + \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n + \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"version\": \"latest\"\n }\n },\n \"Windows\": + {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": + \"latest\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '2501' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:53:25 GMT + etag: + - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + expires: + - Thu, 01 Apr 2021 06:58:25 GMT + source-age: + - '80' + 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: + - d66bb64346189edda1270735d4f424aec779c2d5 + x-frame-options: + - deny + x-github-request-id: + - 68E6:6BB2:C0B17:E0E4D:6063C8CE + x-served-by: + - cache-sin18050-SIN + x-timer: + - S1617260005.274151,VS0,VE1 + x-xss-protection: + - 1; mode=block + 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 --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:53:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"name": "vmVNET", "type": "Microsoft.Network/virtualNetworks", "location": + "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": + {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": + "vmSubnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": "Microsoft.Network/networkSecurityGroups", + "name": "vmNSG", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, + "dependsOn": []}, {"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "vmPublicIP", "location": "westus", "tags": {}, "dependsOn": [], "properties": + {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", + "name": "vmVMNic", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vmVNET", + "Microsoft.Network/networkSecurityGroups/vmNSG", "Microsoft.Network/publicIpAddresses/vmPublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm", "properties": {"privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET/subnets/vmSubnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG"}}}, + {"apiVersion": "2020-12-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vmVMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic"}]}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": + "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": + {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": + "latest"}}, "osProfile": {"computerName": "vm", "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": + {}}, "extendedLocation": {"name": "microsoftlosangeles1", "type": "EdgeZone"}}], + "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '3472' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_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_vm_extended_location_000001/providers/Microsoft.Resources/deployments/vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg","name":"vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2829543966565406126","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-01T06:53:30.236049Z","duration":"PT2.015245S","correlationId":"7239f8da-0a38-4871-859a-0b1b4a31c3e3","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_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg/operationStatuses/08585843468772568296?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '2728' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:53:30 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 --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843468772568296?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, 01 Apr 2021 06:54:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843468772568296?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, 01 Apr 2021 06:54:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843468772568296?api-version=2020-10-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55: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 --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_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_vm_extended_location_000001/providers/Microsoft.Resources/deployments/vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg","name":"vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2829543966565406126","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-01T06:54:42.6242311Z","duration":"PT1M14.4034271S","correlationId":"7239f8da-0a38-4871-859a-0b1b4a31c3e3","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_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '3792' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm?$expand=instanceView&api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66472b4b-4fa0-4097-9650-e90b603751c7\",\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.202012010\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\",\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_vm_extended_location_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\"\r\n + \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\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_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": + \"vm\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Guest Agent is running\",\r\n \"time\": + \"2021-04-01T06:55:03+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-04-01T06:53:54.9216153+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-01T06:54:41.1247496+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 \"extendedLocation\": {\r\n \"type\": + \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3927' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31945 + 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 --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic?api-version=2018-01-01 + response: + body: + string: "{\r\n \"name\": \"vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\",\r\n + \ \"etag\": \"W/\\\"7a92b8c5-0394-4464-899c-986962b286a4\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"f6ce9cfe-4fb7-4fb0-a77a-c23a3ee4a076\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic/ipConfigurations/ipconfigvm\",\r\n + \ \"etag\": \"W/\\\"7a92b8c5-0394-4464-899c-986962b286a4\\\"\",\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_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET/subnets/vmSubnet\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"bxjtpnfroazejif12npmtfinrd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-3B-12-2B\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:04 GMT + etag: + - W/"7a92b8c5-0394-4464-899c-986962b286a4" + 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: + - d6d761fa-f035-41a1-800a-4ce91fb2c032 + 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 --nsg-rule --generate-ssh-keys --edge-zone + 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_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP?api-version=2018-01-01 + response: + body: + string: "{\r\n \"name\": \"vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP\",\r\n + \ \"etag\": \"W/\\\"3b05a610-79a8-4718-a0bc-0cba525c0fce\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"2e7e2b3d-c501-430d-bd8f-8610160ffead\",\r\n + \ \"ipAddress\": \"168.62.205.44\",\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_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic/ipConfigurations/ipconfigvm\"\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: + - '993' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:04 GMT + etag: + - W/"3b05a610-79a8-4718-a0bc-0cba525c0fce" + 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: + - c39bb958-472d-45cc-bc0f-d416df645dc5 + 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_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66472b4b-4fa0-4097-9650-e90b603751c7\",\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.202012010\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\",\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_vm_extended_location_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\"\r\n + \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\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_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"extendedLocation\": + {\r\n \"type\": \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2635' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31944 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml index 4d48bfa36fd..0f8fb86d35c 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --size-gb --tags User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"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:09 GMT + - Tue, 13 Apr 2021 07:24:19 GMT expires: - '-1' pragma: @@ -63,7 +63,7 @@ interactions: ParameterSetName: - -g -n --size-gb --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -75,7 +75,7 @@ interactions: \"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/002fbe98-270a-4628-90cd-8c8d2c8d0e2d?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76520916-6620-4736-bb6b-f2da27345aee?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -83,11 +83,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:14 GMT + - Tue, 13 Apr 2021 07:24:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/002fbe98-270a-4628-90cd-8c8d2c8d0e2d?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76520916-6620-4736-bb6b-f2da27345aee?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -118,13 +118,13 @@ interactions: ParameterSetName: - -g -n --size-gb --tags 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/westus/DiskOperations/002fbe98-270a-4628-90cd-8c8d2c8d0e2d?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76520916-6620-4736-bb6b-f2da27345aee?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:15.7751266+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \"endTime\": + \"2021-04-13T07:24:23.7018056+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_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -133,11 +133,11 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"002fbe98-270a-4628-90cd-8c8d2c8d0e2d\"\r\n}" + \ },\r\n \"name\": \"76520916-6620-4736-bb6b-f2da27345aee\"\r\n}" headers: cache-control: - no-cache @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:17 GMT + - Tue, 13 Apr 2021 07:24:25 GMT expires: - '-1' pragma: @@ -163,7 +163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -181,7 +181,7 @@ interactions: ParameterSetName: - -g -n --size-gb --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -193,9 +193,9 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}" headers: cache-control: @@ -205,7 +205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:17 GMT + - Tue, 13 Apr 2021 07:24:26 GMT expires: - '-1' pragma: @@ -222,7 +222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39996 + - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39970 status: code: 200 message: OK @@ -240,7 +240,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -252,9 +252,9 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}" headers: cache-control: @@ -264,7 +264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:19 GMT + - Tue, 13 Apr 2021 07:24:28 GMT expires: - '-1' pragma: @@ -281,7 +281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39995 + - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39968 status: code: 200 message: OK @@ -306,7 +306,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -320,7 +320,7 @@ interactions: \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0977aa9a-5544-438e-81a4-e8a57a775325?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f2316b05-5493-4301-b285-842ef1d09a92?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -328,11 +328,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:19 GMT + - Tue, 13 Apr 2021 07:24:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0977aa9a-5544-438e-81a4-e8a57a775325?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f2316b05-5493-4301-b285-842ef1d09a92?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -343,9 +343,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: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -363,13 +363,13 @@ interactions: ParameterSetName: - -g -n --size-gb --sku 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/westus/DiskOperations/0977aa9a-5544-438e-81a4-e8a57a775325?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f2316b05-5493-4301-b285-842ef1d09a92?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:20.165778+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:20.3063594+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:24:29.3580578+00:00\",\r\n \"endTime\": + \"2021-04-13T07:24:29.4518166+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_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -378,20 +378,20 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"0977aa9a-5544-438e-81a4-e8a57a775325\"\r\n}" + \"f2316b05-5493-4301-b285-842ef1d09a92\"\r\n}" headers: cache-control: - no-cache content-length: - - '1115' + - '1116' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:21 GMT + - Tue, 13 Apr 2021 07:24:31 GMT expires: - '-1' pragma: @@ -408,7 +408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 + - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399990 status: code: 200 message: OK @@ -426,7 +426,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -438,9 +438,9 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -450,7 +450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:21 GMT + - Tue, 13 Apr 2021 07:24:31 GMT expires: - '-1' pragma: @@ -467,7 +467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39990 + - Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39965 status: code: 200 message: OK @@ -489,7 +489,7 @@ interactions: ParameterSetName: - -g -n --duration-in-seconds 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1/beginGetAccess?api-version=2020-12-01 response: @@ -497,17 +497,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d98aa83f-f1e9-4339-9963-27119fa23fae?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 03:01:22 GMT + - Tue, 13 Apr 2021 07:24:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d98aa83f-f1e9-4339-9963-27119fa23fae?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -538,24 +538,24 @@ interactions: ParameterSetName: - -g -n --duration-in-seconds 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/westus/DiskOperations/3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d98aa83f-f1e9-4339-9963-27119fa23fae?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:23.5563914+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:23.8845001+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-kcnqn2g2k4nq.blob.core.windows.net/p5dtncl1p0vb/abcd?sv=2018-03-28&sr=b&si=fabfb389-aafa-47e9-8fd6-fd040de4602b&sig=01veG%2BRpQnNFumi%2BkOjhhZOfVzF%2BZfd5MFdFL7F%2BwAQ%3D\"\r\n}\r\n - \ },\r\n \"name\": \"3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:24:32.7486992+00:00\",\r\n \"endTime\": + \"2021-04-13T07:24:32.9986704+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-kcnqn2g2k4nq.blob.core.windows.net/x4vb000ccqvv/abcd?sv=2018-03-28&sr=b&si=3a0a175d-1641-493e-8b2e-dee2991a73eb&sig=zUWPUBier9hbjVdqpXTUkkpWZKOEOeAFFYn3twhQX90%3D\"\r\n}\r\n + \ },\r\n \"name\": \"d98aa83f-f1e9-4339-9963-27119fa23fae\"\r\n}" headers: cache-control: - no-cache content-length: - - '429' + - '421' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:53 GMT + - Tue, 13 Apr 2021 07:25:03 GMT expires: - '-1' pragma: @@ -572,7 +572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49978,Microsoft.Compute/GetOperation30Min;399978 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399980 status: code: 200 message: OK @@ -590,21 +590,21 @@ interactions: ParameterSetName: - -g -n --duration-in-seconds 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/westus/DiskOperations/3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d98aa83f-f1e9-4339-9963-27119fa23fae?monitor=true&api-version=2020-12-01 response: body: - string: "{\r\n \"accessSAS\": \"https://md-kcnqn2g2k4nq.blob.core.windows.net/p5dtncl1p0vb/abcd?sv=2018-03-28&sr=b&si=fabfb389-aafa-47e9-8fd6-fd040de4602b&sig=01veG%2BRpQnNFumi%2BkOjhhZOfVzF%2BZfd5MFdFL7F%2BwAQ%3D\"\r\n}" + string: "{\r\n \"accessSAS\": \"https://md-kcnqn2g2k4nq.blob.core.windows.net/x4vb000ccqvv/abcd?sv=2018-03-28&sr=b&si=3a0a175d-1641-493e-8b2e-dee2991a73eb&sig=zUWPUBier9hbjVdqpXTUkkpWZKOEOeAFFYn3twhQX90%3D\"\r\n}" headers: cache-control: - no-cache content-length: - - '204' + - '196' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:54 GMT + - Tue, 13 Apr 2021 07:25:03 GMT expires: - '-1' pragma: @@ -621,7 +621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399977 + - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399979 status: code: 200 message: OK @@ -640,14 +640,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -656,7 +656,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:54 GMT + - Tue, 13 Apr 2021 07:25:04 GMT expires: - '-1' pragma: @@ -689,7 +689,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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: @@ -698,12 +698,12 @@ interactions: {},\r\n \"sku\": {\r\n \"name\": \"Premium_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_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n + \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\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/32ce2fea-ef8d-49c2-8a5c-07c45a00541f?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3030d60f-5c18-45ee-8add-876ac6a6a87a?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -711,11 +711,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:56 GMT + - Tue, 13 Apr 2021 07:25:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/32ce2fea-ef8d-49c2-8a5c-07c45a00541f?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3030d60f-5c18-45ee-8add-876ac6a6a87a?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -726,9 +726,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;992,Microsoft.Compute/CreateUpdateDisks30Min;7992 + - Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -746,36 +746,36 @@ 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/westus/DiskOperations/32ce2fea-ef8d-49c2-8a5c-07c45a00541f?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3030d60f-5c18-45ee-8add-876ac6a6a87a?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:57.00962+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:57.8064643+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:25:09.4529554+00:00\",\r\n \"endTime\": + \"2021-04-13T07:25:10.1873282+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_managed_disk000001/providers/Microsoft.Compute/disks/d2\",\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 \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n + \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\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-08T03:01:57.00962+00:00\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"bd7c72c0-1ec4-4461-aa8d-3fe902e57969\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:25:09.4529554+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2110a546-b420-4f0a-8ba3-801ee6611957\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"32ce2fea-ef8d-49c2-8a5c-07c45a00541f\"\r\n}" + \ },\r\n \"name\": \"3030d60f-5c18-45ee-8add-876ac6a6a87a\"\r\n}" headers: cache-control: - no-cache content-length: - - '1381' + - '1385' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:58 GMT + - Tue, 13 Apr 2021 07:25:11 GMT expires: - '-1' pragma: @@ -792,7 +792,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49976,Microsoft.Compute/GetOperation30Min;399976 + - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399978 status: code: 200 message: OK @@ -810,7 +810,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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: @@ -820,22 +820,22 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n + \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\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-08T03:01:57.00962+00:00\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"bd7c72c0-1ec4-4461-aa8d-3fe902e57969\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:25:09.4529554+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2110a546-b420-4f0a-8ba3-801ee6611957\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1158' + - '1160' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:58 GMT + - Tue, 13 Apr 2021 07:25:11 GMT expires: - '-1' pragma: @@ -852,7 +852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4969,Microsoft.Compute/LowCostGet30Min;39969 + - Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39955 status: code: 200 message: OK @@ -871,14 +871,14 @@ interactions: - -g -n --size-gb --sku --tags User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -887,7 +887,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:00 GMT + - Tue, 13 Apr 2021 07:25:13 GMT expires: - '-1' pragma: @@ -920,9 +920,9 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": @@ -932,7 +932,7 @@ interactions: \"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/75a6ad68-6557-48a5-998b-694c9bdf812f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/83bac5ef-f64b-4b00-8f15-ca8c584842b9?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -940,11 +940,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:04 GMT + - Tue, 13 Apr 2021 07:25:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/75a6ad68-6557-48a5-998b-694c9bdf812f?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/83bac5ef-f64b-4b00-8f15-ca8c584842b9?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -975,13 +975,13 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --tags 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/westus/DiskOperations/75a6ad68-6557-48a5-998b-694c9bdf812f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/83bac5ef-f64b-4b00-8f15-ca8c584842b9?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n \"endTime\": - \"2021-04-08T03:02:04.9626933+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:25:19.1092097+00:00\",\r\n \"endTime\": + \"2021-04-13T07:25:19.265457+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_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n @@ -989,20 +989,20 @@ interactions: \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"75a6ad68-6557-48a5-998b-694c9bdf812f\"\r\n}" + \"83bac5ef-f64b-4b00-8f15-ca8c584842b9\"\r\n}" headers: cache-control: - no-cache content-length: - - '1086' + - '1084' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:06 GMT + - Tue, 13 Apr 2021 07:25:20 GMT expires: - '-1' pragma: @@ -1019,7 +1019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49974,Microsoft.Compute/GetOperation30Min;399974 + - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399976 status: code: 200 message: OK @@ -1037,9 +1037,9 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1048,19 +1048,19 @@ interactions: \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '861' + - '860' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:07 GMT + - Tue, 13 Apr 2021 07:25:21 GMT expires: - '-1' pragma: @@ -1077,7 +1077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4966,Microsoft.Compute/LowCostGet30Min;39966 + - Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39952 status: code: 200 message: OK @@ -1095,9 +1095,9 @@ interactions: ParameterSetName: - -g -n --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1106,19 +1106,19 @@ interactions: \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '861' + - '860' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:08 GMT + - Tue, 13 Apr 2021 07:25:22 GMT expires: - '-1' pragma: @@ -1135,7 +1135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4965,Microsoft.Compute/LowCostGet30Min;39965 + - Microsoft.Compute/LowCostGet3Min;4972,Microsoft.Compute/LowCostGet30Min;39951 status: code: 200 message: OK @@ -1160,9 +1160,9 @@ interactions: ParameterSetName: - -g -n --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": @@ -1175,7 +1175,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c824e3c0-fa21-45ce-8dd4-f9951604702a?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e59e7b0d-9690-42f5-909d-9d10f533cec6?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1183,11 +1183,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:09 GMT + - Tue, 13 Apr 2021 07:25:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c824e3c0-fa21-45ce-8dd4-f9951604702a?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e59e7b0d-9690-42f5-909d-9d10f533cec6?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1200,7 +1200,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -1218,13 +1218,13 @@ interactions: ParameterSetName: - -g -n --sku 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/westus/DiskOperations/c824e3c0-fa21-45ce-8dd4-f9951604702a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e59e7b0d-9690-42f5-909d-9d10f533cec6?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:02:09.9158297+00:00\",\r\n \"endTime\": - \"2021-04-08T03:02:10.8533191+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:25:24.2654258+00:00\",\r\n \"endTime\": + \"2021-04-13T07:25:24.8748386+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_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n @@ -1232,20 +1232,20 @@ interactions: \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"c824e3c0-fa21-45ce-8dd4-f9951604702a\"\r\n}" + \"e59e7b0d-9690-42f5-909d-9d10f533cec6\"\r\n}" headers: cache-control: - no-cache content-length: - - '1088' + - '1087' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:11 GMT + - Tue, 13 Apr 2021 07:25:26 GMT expires: - '-1' pragma: @@ -1262,7 +1262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399972 + - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399974 status: code: 200 message: OK @@ -1280,9 +1280,9 @@ interactions: ParameterSetName: - -g -n --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1291,19 +1291,19 @@ interactions: \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '863' + - '862' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:11 GMT + - Tue, 13 Apr 2021 07:25:26 GMT expires: - '-1' pragma: @@ -1320,7 +1320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4963,Microsoft.Compute/LowCostGet30Min;39963 + - Microsoft.Compute/LowCostGet3Min;4970,Microsoft.Compute/LowCostGet30Min;39949 status: code: 200 message: OK @@ -1338,9 +1338,9 @@ interactions: ParameterSetName: - -g -n --source --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' @@ -1354,7 +1354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:12 GMT + - Tue, 13 Apr 2021 07:25:26 GMT expires: - '-1' pragma: @@ -1382,7 +1382,7 @@ interactions: ParameterSetName: - -g -n --source --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -1394,9 +1394,9 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1406,7 +1406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:13 GMT + - Tue, 13 Apr 2021 07:25:26 GMT expires: - '-1' pragma: @@ -1423,7 +1423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4962,Microsoft.Compute/LowCostGet30Min;39962 + - Microsoft.Compute/LowCostGet3Min;4968,Microsoft.Compute/LowCostGet30Min;39947 status: code: 200 message: OK @@ -1442,14 +1442,14 @@ interactions: - -g -n --source --sku User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1458,7 +1458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:13 GMT + - Tue, 13 Apr 2021 07:25:27 GMT expires: - '-1' pragma: @@ -1491,20 +1491,20 @@ interactions: ParameterSetName: - -g -n --source --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Premium_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_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n + \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\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/481231ca-a9f5-420f-80cb-3aeb67e2d9ef?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/611a9b01-dd14-4a27-afc5-a0dd00140ec3?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1512,11 +1512,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:18 GMT + - Tue, 13 Apr 2021 07:25:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/481231ca-a9f5-420f-80cb-3aeb67e2d9ef?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/611a9b01-dd14-4a27-afc5-a0dd00140ec3?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1529,7 +1529,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -1547,26 +1547,26 @@ interactions: ParameterSetName: - -g -n --source --sku 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/westus/DiskOperations/481231ca-a9f5-420f-80cb-3aeb67e2d9ef?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/611a9b01-dd14-4a27-afc5-a0dd00140ec3?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:02:18.7595919+00:00\",\r\n \"endTime\": - \"2021-04-08T03:02:19.2908186+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:25:33.2185607+00:00\",\r\n \"endTime\": + \"2021-04-13T07:25:33.7185365+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_managed_disk000001/providers/Microsoft.Compute/snapshots/s2\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\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 \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n + \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:18.7595919+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:33.2185607+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"42bd4e83-ead9-4355-8435-9d64534db5a8\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"7a237bf9-17c1-4353-b38e-b52b808d1cc3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"481231ca-a9f5-420f-80cb-3aeb67e2d9ef\"\r\n}" + \"611a9b01-dd14-4a27-afc5-a0dd00140ec3\"\r\n}" headers: cache-control: - no-cache @@ -1575,7 +1575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:21 GMT + - Tue, 13 Apr 2021 07:25:35 GMT expires: - '-1' pragma: @@ -1592,7 +1592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49970,Microsoft.Compute/GetOperation30Min;399970 + - Microsoft.Compute/GetOperation3Min;49978,Microsoft.Compute/GetOperation30Min;399972 status: code: 200 message: OK @@ -1610,9 +1610,9 @@ interactions: ParameterSetName: - -g -n --source --sku 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2\",\r\n @@ -1620,11 +1620,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n + \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:18.7595919+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:33.2185607+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"42bd4e83-ead9-4355-8435-9d64534db5a8\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"7a237bf9-17c1-4353-b38e-b52b808d1cc3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1634,7 +1634,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:21 GMT + - Tue, 13 Apr 2021 07:25:35 GMT expires: - '-1' pragma: @@ -1651,7 +1651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4958,Microsoft.Compute/LowCostGet30Min;39958 + - Microsoft.Compute/LowCostGet3Min;4964,Microsoft.Compute/LowCostGet30Min;39943 status: code: 200 message: OK @@ -1669,7 +1669,7 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/virtualMachines/s1?$expand=instanceView&api-version=2020-12-01 response: @@ -1685,7 +1685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:21 GMT + - Tue, 13 Apr 2021 07:25:36 GMT expires: - '-1' pragma: @@ -1713,9 +1713,9 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1724,19 +1724,19 @@ interactions: \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '863' + - '862' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:22 GMT + - Tue, 13 Apr 2021 07:25:37 GMT expires: - '-1' pragma: @@ -1753,7 +1753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4956,Microsoft.Compute/LowCostGet30Min;39956 + - Microsoft.Compute/LowCostGet3Min;4963,Microsoft.Compute/LowCostGet30Min;39942 status: code: 200 message: OK @@ -1771,9 +1771,9 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' @@ -1787,7 +1787,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:23 GMT + - Tue, 13 Apr 2021 07:25:38 GMT expires: - '-1' pragma: @@ -1815,7 +1815,7 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -1827,9 +1827,9 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1839,7 +1839,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:23 GMT + - Tue, 13 Apr 2021 07:25:38 GMT expires: - '-1' pragma: @@ -1856,7 +1856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4955,Microsoft.Compute/LowCostGet30Min;39955 + - Microsoft.Compute/LowCostGet3Min;4962,Microsoft.Compute/LowCostGet30Min;39941 status: code: 200 message: OK @@ -1875,14 +1875,14 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1891,7 +1891,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:24 GMT + - Tue, 13 Apr 2021 07:25:38 GMT expires: - '-1' pragma: @@ -1929,7 +1929,7 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1?api-version=2020-12-01 response: @@ -1955,7 +1955,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b1013a73-8417-40c9-80db-5a7a21f7609e?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/751a75e8-50a4-4bf8-8c7b-00d4f3876d9b?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1963,7 +1963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:29 GMT + - Tue, 13 Apr 2021 07:25:43 GMT expires: - '-1' pragma: @@ -1978,7 +1978,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -1996,23 +1996,23 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags 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/westus/operations/b1013a73-8417-40c9-80db-5a7a21f7609e?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/751a75e8-50a4-4bf8-8c7b-00d4f3876d9b?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:02:28.8053588+00:00\",\r\n \"endTime\": - \"2021-04-08T03:02:33.946219+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b1013a73-8417-40c9-80db-5a7a21f7609e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:25:42.3780884+00:00\",\r\n \"endTime\": + \"2021-04-13T07:25:47.5033245+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"751a75e8-50a4-4bf8-8c7b-00d4f3876d9b\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:59 GMT + - Tue, 13 Apr 2021 07:26:14 GMT expires: - '-1' pragma: @@ -2029,7 +2029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29950 status: code: 200 message: OK @@ -2047,7 +2047,7 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags 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/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1?api-version=2020-12-01 response: @@ -2079,7 +2079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:00 GMT + - Tue, 13 Apr 2021 07:26:14 GMT expires: - '-1' pragma: @@ -2096,7 +2096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798 + - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1792 status: code: 200 message: OK @@ -2114,7 +2114,7 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/virtualMachines/s1?$expand=instanceView&api-version=2020-12-01 response: @@ -2130,7 +2130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:01 GMT + - Tue, 13 Apr 2021 07:26:14 GMT expires: - '-1' pragma: @@ -2158,9 +2158,9 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -2169,19 +2169,19 @@ interactions: \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '863' + - '862' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:01 GMT + - Tue, 13 Apr 2021 07:26:15 GMT expires: - '-1' pragma: @@ -2198,7 +2198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4946,Microsoft.Compute/LowCostGet30Min;39946 + - Microsoft.Compute/LowCostGet3Min;4950,Microsoft.Compute/LowCostGet30Min;39929 status: code: 200 message: OK @@ -2216,9 +2216,9 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' @@ -2232,7 +2232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:02 GMT + - Tue, 13 Apr 2021 07:26:16 GMT expires: - '-1' pragma: @@ -2260,7 +2260,7 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -2272,9 +2272,9 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2284,7 +2284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:02 GMT + - Tue, 13 Apr 2021 07:26:17 GMT expires: - '-1' pragma: @@ -2301,7 +2301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4945,Microsoft.Compute/LowCostGet30Min;39945 + - Microsoft.Compute/LowCostGet3Min;4949,Microsoft.Compute/LowCostGet30Min;39928 status: code: 200 message: OK @@ -2320,14 +2320,14 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2336,7 +2336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:03 GMT + - Tue, 13 Apr 2021 07:26:17 GMT expires: - '-1' pragma: @@ -2374,7 +2374,7 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2?api-version=2020-12-01 response: @@ -2400,7 +2400,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/26db7f33-1e45-474f-974a-4cd778e33f5e?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/977f0731-d59d-46e1-bb08-23eb8d3f3bb2?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2408,7 +2408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:07 GMT + - Tue, 13 Apr 2021 07:26:23 GMT expires: - '-1' pragma: @@ -2423,7 +2423,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateImages3Min;38,Microsoft.Compute/CreateImages30Min;198 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -2441,23 +2441,23 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching 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/westus/operations/26db7f33-1e45-474f-974a-4cd778e33f5e?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/977f0731-d59d-46e1-bb08-23eb8d3f3bb2?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:06.0570312+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:11.166667+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"26db7f33-1e45-474f-974a-4cd778e33f5e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:26:21.8645607+00:00\",\r\n \"endTime\": + \"2021-04-13T07:26:26.9742315+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"977f0731-d59d-46e1-bb08-23eb8d3f3bb2\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:37 GMT + - Tue, 13 Apr 2021 07:26:53 GMT expires: - '-1' pragma: @@ -2474,7 +2474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29944 status: code: 200 message: OK @@ -2492,7 +2492,7 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2?api-version=2020-12-01 response: @@ -2524,7 +2524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:38 GMT + - Tue, 13 Apr 2021 07:26:53 GMT expires: - '-1' pragma: @@ -2541,7 +2541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1796 + - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1790 status: code: 200 message: OK @@ -2560,7 +2560,7 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching --data-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/virtualMachines/s1?$expand=instanceView&api-version=2020-12-01 response: @@ -2576,7 +2576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:38 GMT + - Tue, 13 Apr 2021 07:26:55 GMT expires: - '-1' pragma: @@ -2605,9 +2605,9 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching --data-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -2616,19 +2616,19 @@ interactions: \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '863' + - '862' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:39 GMT + - Tue, 13 Apr 2021 07:26:56 GMT expires: - '-1' pragma: @@ -2645,7 +2645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4924,Microsoft.Compute/LowCostGet30Min;39924 + - Microsoft.Compute/LowCostGet3Min;4928,Microsoft.Compute/LowCostGet30Min;39907 status: code: 200 message: OK @@ -2664,9 +2664,9 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching --data-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' @@ -2680,7 +2680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:40 GMT + - Tue, 13 Apr 2021 07:26:56 GMT expires: - '-1' pragma: @@ -2709,7 +2709,7 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching --data-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -2721,9 +2721,9 @@ interactions: {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2733,7 +2733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:40 GMT + - Tue, 13 Apr 2021 07:26:56 GMT expires: - '-1' pragma: @@ -2750,7 +2750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4922,Microsoft.Compute/LowCostGet30Min;39922 + - Microsoft.Compute/LowCostGet3Min;4924,Microsoft.Compute/LowCostGet30Min;39903 status: code: 200 message: OK @@ -2770,14 +2770,14 @@ interactions: --data-disk-caching User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2786,7 +2786,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:40 GMT + - Tue, 13 Apr 2021 07:26:57 GMT expires: - '-1' pragma: @@ -2825,7 +2825,7 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching --data-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3?api-version=2020-12-01 response: @@ -2851,7 +2851,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/04401203-0c67-4541-b4ca-6c717b301ef3?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3555931c-f0f9-47d2-87aa-5bc52863b606?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2859,7 +2859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:45 GMT + - Tue, 13 Apr 2021 07:27:04 GMT expires: - '-1' pragma: @@ -2874,7 +2874,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateImages3Min;37,Microsoft.Compute/CreateImages30Min;197 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -2893,14 +2893,14 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching --data-disk-caching 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/westus/operations/04401203-0c67-4541-b4ca-6c717b301ef3?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3555931c-f0f9-47d2-87aa-5bc52863b606?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:03:44.6525367+00:00\",\r\n \"endTime\": - \"2021-04-08T03:03:49.7777747+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"04401203-0c67-4541-b4ca-6c717b301ef3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-13T07:27:02.4758662+00:00\",\r\n \"endTime\": + \"2021-04-13T07:27:07.6010852+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3555931c-f0f9-47d2-87aa-5bc52863b606\"\r\n}" headers: cache-control: - no-cache @@ -2909,7 +2909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:15 GMT + - Tue, 13 Apr 2021 07:27:34 GMT expires: - '-1' pragma: @@ -2926,7 +2926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978 + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29942 status: code: 200 message: OK @@ -2945,7 +2945,7 @@ interactions: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching --data-disk-caching 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/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3?api-version=2020-12-01 response: @@ -2977,7 +2977,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:15 GMT + - Tue, 13 Apr 2021 07:27:34 GMT expires: - '-1' pragma: @@ -2994,7 +2994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1794 + - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1788 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_snapshot_incremental.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_snapshot_incremental.yaml index c0e4d22d867..b3b6211849b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_snapshot_incremental.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_snapshot_incremental.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -g -n --size-gb -l 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/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -30,7 +30,7 @@ interactions: \"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/centraluseuap/DiskOperations/69108ed5-402b-4116-819e-5849fd91debd?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5b5ad687-fea6-4cfd-bd91-38fa2a7d71d5?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,11 +38,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:13 GMT + - Tue, 13 Apr 2021 07:24:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69108ed5-402b-4116-819e-5849fd91debd?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5b5ad687-fea6-4cfd-bd91-38fa2a7d71d5?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -55,7 +55,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -73,13 +73,13 @@ interactions: ParameterSetName: - -g -n --size-gb -l 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/centraluseuap/DiskOperations/69108ed5-402b-4116-819e-5849fd91debd?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5b5ad687-fea6-4cfd-bd91-38fa2a7d71d5?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:13.6902077+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:14.210213+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:24:24.0449049+00:00\",\r\n \"endTime\": + \"2021-04-13T07:24:24.2199027+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_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -88,19 +88,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-08T03:01:13.865212+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:24:24.0499291+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"69108ed5-402b-4116-819e-5849fd91debd\"\r\n}" + \ \"uniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"5b5ad687-fea6-4cfd-bd91-38fa2a7d71d5\"\r\n}" headers: cache-control: - no-cache content-length: - - '1116' + - '1118' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:15 GMT + - Tue, 13 Apr 2021 07:24:26 GMT expires: - '-1' pragma: @@ -135,7 +135,7 @@ interactions: ParameterSetName: - -g -n --size-gb -l 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/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -147,19 +147,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-08T03:01:13.865212+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:24:24.0499291+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '892' + - '893' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:15 GMT + - Tue, 13 Apr 2021 07:24:26 GMT expires: - '-1' pragma: @@ -194,9 +194,9 @@ interactions: ParameterSetName: - -g -n --incremental -l --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/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:17 GMT + - Tue, 13 Apr 2021 07:24:27 GMT expires: - '-1' pragma: @@ -238,7 +238,7 @@ interactions: ParameterSetName: - -g -n --incremental -l --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/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: @@ -250,19 +250,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-08T03:01:13.865212+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-13T07:24:24.0499291+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '892' + - '893' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:17 GMT + - Tue, 13 Apr 2021 07:24:28 GMT expires: - '-1' pragma: @@ -304,20 +304,20 @@ interactions: ParameterSetName: - -g -n --incremental -l --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/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"centraluseuap\",\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_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\"\r\n },\r\n + \ \"sourceUniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\"\r\n },\r\n \ \"incremental\": true,\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/centraluseuap/DiskOperations/9693c153-25ff-4fc2-94d3-e71fa4e419e9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/691e2fe1-b83b-4e89-a415-ac84b84757b2?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -325,11 +325,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:22 GMT + - Tue, 13 Apr 2021 07:24:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9693c153-25ff-4fc2-94d3-e71fa4e419e9?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/691e2fe1-b83b-4e89-a415-ac84b84757b2?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -360,35 +360,36 @@ interactions: ParameterSetName: - -g -n --incremental -l --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/centraluseuap/DiskOperations/9693c153-25ff-4fc2-94d3-e71fa4e419e9?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/691e2fe1-b83b-4e89-a415-ac84b84757b2?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:22.4306159+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:24.2958371+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-13T07:24:33.9501214+00:00\",\r\n \"endTime\": + \"2021-04-13T07:24:35.2588341+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_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"centraluseuap\",\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_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\"\r\n },\r\n + \ \"sourceUniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": true,\r\n \"timeCreated\": \"2021-04-08T03:01:22.4956471+00:00\",\r\n + \ },\r\n \"incremental\": true,\r\n \"timeCreated\": \"2021-04-13T07:24:33.9801217+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"75b5ef10-e8a4-47fe-8246-b0d6de45c90a\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3b7045b6-7ae0-496e-82d1-126d98e85e89\",\r\n + \ \"incrementalSnapshotFamilyId\": \"e84240ee-5a1c-4701-bd28-17d02e237c9c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"9693c153-25ff-4fc2-94d3-e71fa4e419e9\"\r\n}" + \"691e2fe1-b83b-4e89-a415-ac84b84757b2\"\r\n}" headers: cache-control: - no-cache content-length: - - '1348' + - '1424' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:24 GMT + - Tue, 13 Apr 2021 07:24:35 GMT expires: - '-1' pragma: @@ -423,9 +424,9 @@ interactions: ParameterSetName: - -g -n --incremental -l --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/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -433,21 +434,22 @@ 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_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\"\r\n },\r\n + \ \"sourceUniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": true,\r\n \"timeCreated\": \"2021-04-08T03:01:22.4956471+00:00\",\r\n + \ },\r\n \"incremental\": true,\r\n \"timeCreated\": \"2021-04-13T07:24:33.9801217+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"75b5ef10-e8a4-47fe-8246-b0d6de45c90a\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3b7045b6-7ae0-496e-82d1-126d98e85e89\",\r\n + \ \"incrementalSnapshotFamilyId\": \"e84240ee-5a1c-4701-bd28-17d02e237c9c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1123' + - '1199' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:25 GMT + - Tue, 13 Apr 2021 07:24:36 GMT expires: - '-1' pragma: @@ -464,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996 + - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119995 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extended_location.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extended_location.yaml new file mode 100644 index 00000000000..17657ad34bd --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extended_location.yaml @@ -0,0 +1,481 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --generate-ssh-keys --edge-zone + 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_vmss_extended_location_000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001","name":"cli_test_vmss_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T06:55:08Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n + \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": + \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n + \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n + \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": + \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": + \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": + \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": + {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n + \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n + \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": + \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n + \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"version\": \"latest\"\n }\n },\n \"Windows\": + {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": + \"latest\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '2501' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:15 GMT + etag: + - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + expires: + - Thu, 01 Apr 2021 07:00:15 GMT + source-age: + - '190' + 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: + - bd75a73d47ec10866baa39aa12d3b1c7df9d88ec + x-frame-options: + - deny + x-github-request-id: + - 68E6:6BB2:C0B17:E0E4D:6063C8CE + x-served-by: + - cache-sin18041-SIN + x-timer: + - S1617260115.181286,VS0,VE1 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --generate-ssh-keys --edge-zone + 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_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"name": "vmssVNET", "type": "Microsoft.Network/virtualNetworks", "location": + "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": + {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": + "vmssSubnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion": + "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vmssLBPublicIP", + "location": "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": + "Dynamic"}}, {"type": "Microsoft.Network/loadBalancers", "name": "vmssLB", "location": + "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmssVNET", + "Microsoft.Network/publicIpAddresses/vmssLBPublicIP"], "properties": {"backendAddressPools": + [{"name": "vmssLBBEPool"}], "inboundNatPools": [{"name": "vmssLBNatPool", "properties": + {"frontendIPConfiguration": {"id": "[concat(resourceId(''Microsoft.Network/loadBalancers'', + ''vmssLB''), ''/frontendIPConfigurations/'', ''loadBalancerFrontEnd'')]"}, "protocol": + "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": "50119", "backendPort": + 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", "properties": + {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmssLBPublicIP"}}}]}}, + {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss", "location": + "westus", "tags": {}, "apiVersion": "2020-12-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmssVNET", + "Microsoft.Network/loadBalancers/vmssLB"], "sku": {"name": "Standard_DS1_v2", + "capacity": 2}, "properties": {"overprovision": true, "upgradePolicy": {"mode": + "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": + "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, + "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": + "18.04-LTS", "version": "latest"}}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "vmss481ccNic", "properties": {"primary": "true", "ipConfigurations": + [{"name": "vmss481ccIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET/subnets/vmssSubnet"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/backendAddressPools/vmssLBBEPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/inboundNatPools/vmssLBNatPool"}]}}]}}]}, + "osProfile": {"computerNamePrefix": "vmss481cc", "adminUsername": "fey", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/fey/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\n"}]}}}}, "singlePlacementGroup": null}, "extendedLocation": + {"name": "microsoftlosangeles1", "type": "EdgeZone"}}], "outputs": {"VMSS": + {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'', + ''vmss''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}}, + "parameters": {}, "mode": "Incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + Content-Length: + - '4226' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --generate-ssh-keys --edge-zone + 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_vmss_extended_location_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_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP","name":"vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9277218166363052771","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-01T06:55:18.6768164Z","duration":"PT0.9423673S","correlationId":"1d4f430f-37b4-430e-bf6c-3c9d88d49ae6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP/operationStatuses/08585843467677431868?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '2680' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:55:20 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: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --generate-ssh-keys --edge-zone + 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_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843467677431868?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, 01 Apr 2021 06:55:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --generate-ssh-keys --edge-zone + 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_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843467677431868?api-version=2020-10-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:56:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --generate-ssh-keys --edge-zone + 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_vmss_extended_location_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_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP","name":"vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9277218166363052771","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-01T06:56:12.7146994Z","duration":"PT54.9802503S","correlationId":"1d4f430f-37b4-430e-bf6c-3c9d88d49ae6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss481cc","adminUsername":"fey","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/fey/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss481ccNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss481ccIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET/subnets/vmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/backendAddressPools/vmssLBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/inboundNatPools/vmssLBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e943d23a-fc86-41b5-aaa7-f6652b30f093","platformFaultDomainCount":1}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmssLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '5890' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:56:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss 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_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"vmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": + {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": + \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"vmss481cc\",\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 },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n + \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n + \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": + 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss481ccNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss481ccIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET/subnets/vmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/backendAddressPools/vmssLBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/inboundNatPools/vmssLBNatPool\"}]}}]}}]}\r\n + \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": + true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"e943d23a-fc86-41b5-aaa7-f6652b30f093\",\r\n \"platformFaultDomainCount\": + 1\r\n },\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n + \ \"name\": \"microsoftlosangeles1\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3385' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 01 Apr 2021 06:56: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/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2575 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 0726376a21c..40e800d334f 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 @@ -4618,24 +4618,21 @@ def test_disk_access(self, resource_group): ]) self.cmd('disk-access update -g {rg} -n {diskaccess} --tags tag1=val1') - disk_access_output = self.cmd('disk-access show -g {rg} -n {diskaccess}', checks=[ + self.cmd('disk-access show -g {rg} -n {diskaccess}', checks=[ self.check('name', '{diskaccess}'), self.check('location', '{loc}'), self.check('tags.tag1', 'val1') - ]).get_output_in_json() - disk_access_id = disk_access_output['id'] + ]) self.cmd('disk create -g {rg} -n {disk} --size-gb 10 --network-access-policy AllowPrivate --disk-access {diskaccess}') self.cmd('disk show -g {rg} -n {disk}', checks=[ self.check('name', '{disk}'), - self.check('diskAccessId', disk_access_id, False), self.check('networkAccessPolicy', 'AllowPrivate') ]) self.cmd('snapshot create -g {rg} -n {snapshot} --size-gb 10 --network-access-policy AllowPrivate --disk-access {diskaccess}') self.cmd('snapshot show -g {rg} -n {snapshot}', checks=[ self.check('name', '{snapshot}'), - self.check('diskAccessId', disk_access_id, False), self.check('networkAccessPolicy', 'AllowPrivate') ]) @@ -5166,5 +5163,38 @@ def test_vm_create_count(self, resource_group): self.cmd('vm show -g {rg} -n vm2') +class ExtendedLocation(ScenarioTest): + @ResourceGroupPreparer(name_prefix='cli_test_vm_extended_location_') + def test_vm_extended_location(self, resource_group): + self.cmd('vm create -g {rg} -n vm --image ubuntults --nsg-rule None --generate-ssh-keys --edge-zone microsoftlosangeles1') + self.cmd('vm show -g {rg} -n vm', checks=[ + self.check('extendedLocation.name', 'microsoftlosangeles1'), + self.check('extendedLocation.type', 'EdgeZone') + ]) + + @ResourceGroupPreparer(name_prefix='cli_test_vmss_extended_location_') + def test_vmss_extended_location(self, resource_group): + self.cmd('vmss create -g {rg} -n vmss --image ubuntults --generate-ssh-keys --edge-zone microsoftlosangeles1') + self.cmd('vmss show -g {rg} -n vmss', checks=[ + self.check('extendedLocation.name', 'microsoftlosangeles1'), + self.check('extendedLocation.type', 'EdgeZone') + ]) + + @ResourceGroupPreparer(name_prefix='cli_test_other_extended_location_') + def test_other_extended_location(self, resource_group): + self.cmd('disk create -g {rg} -n d1 --size-gb 10 --edge-zone microsoftlosangeles1', checks=[ + self.check('extendedLocation.name', 'microsoftlosangeles1'), + self.check('extendedLocation.type', 'EdgeZone') + ]) + self.cmd('snapshot create -g {rg} -n s1 --size-gb 10 --edge-zone microsoftlosangeles1 --sku Premium_LRS', checks=[ + self.check('extendedLocation.name', 'microsoftlosangeles1'), + self.check('extendedLocation.type', 'EdgeZone') + ]) + self.cmd('image create -g {rg} -n image --os-type linux --source d1 --edge-zone microsoftlosangeles1', checks=[ + self.check('extendedLocation.name', 'microsoftlosangeles1'), + self.check('extendedLocation.type', 'EdgeZone') + ]) + + if __name__ == '__main__': unittest.main()