From 14d91c02722aac8a1ed13683d046ad695c995eb3 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Fri, 29 Aug 2025 20:53:43 +0530 Subject: [PATCH 01/20] [Storage-Mover] update to api version 2025-07-01; `az storage-mover endpoint`: Support `identity` --- .../aaz/latest/storage_mover/_create.py | 6 +- .../aaz/latest/storage_mover/_delete.py | 6 +- .../aaz/latest/storage_mover/_list.py | 36 +- .../aaz/latest/storage_mover/_show.py | 6 +- .../aaz/latest/storage_mover/_update.py | 8 +- .../aaz/latest/storage_mover/_wait.py | 4 +- .../aaz/latest/storage_mover/agent/_create.py | 15 +- .../aaz/latest/storage_mover/agent/_list.py | 9 +- .../aaz/latest/storage_mover/agent/_show.py | 8 +- .../latest/storage_mover/agent/_unregister.py | 6 +- .../aaz/latest/storage_mover/agent/_update.py | 15 +- .../aaz/latest/storage_mover/agent/_wait.py | 6 +- .../latest/storage_mover/endpoint/_create.py | 131 ++++- .../latest/storage_mover/endpoint/_delete.py | 6 +- .../latest/storage_mover/endpoint/_list.py | 57 +- .../latest/storage_mover/endpoint/_show.py | 56 +- .../latest/storage_mover/endpoint/_update.py | 85 ++- .../latest/storage_mover/endpoint/_wait.py | 54 +- .../endpoint/identity/__cmd_group.py | 23 + .../endpoint/identity/__init__.py | 14 + .../endpoint/identity/_assign.py | 503 ++++++++++++++++++ .../endpoint/identity/_remove.py | 503 ++++++++++++++++++ .../storage_mover/endpoint/identity/_show.py | 353 ++++++++++++ .../storage_mover/job_definition/_create.py | 65 ++- .../storage_mover/job_definition/_delete.py | 6 +- .../storage_mover/job_definition/_list.py | 58 +- .../storage_mover/job_definition/_show.py | 57 +- .../job_definition/_start_job.py | 6 +- .../storage_mover/job_definition/_stop_job.py | 6 +- .../storage_mover/job_definition/_update.py | 67 ++- .../storage_mover/job_definition/_wait.py | 55 +- .../aaz/latest/storage_mover/job_run/_list.py | 13 +- .../aaz/latest/storage_mover/job_run/_show.py | 12 +- .../latest/storage_mover/project/_create.py | 6 +- .../latest/storage_mover/project/_delete.py | 6 +- .../aaz/latest/storage_mover/project/_list.py | 7 +- .../aaz/latest/storage_mover/project/_show.py | 6 +- .../latest/storage_mover/project/_update.py | 8 +- .../aaz/latest/storage_mover/project/_wait.py | 4 +- .../azext_storage_mover/azext_metadata.json | 2 +- 40 files changed, 2140 insertions(+), 154 deletions(-) create mode 100644 src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/__cmd_group.py create mode 100644 src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/__init__.py create mode 100644 src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_assign.py create mode 100644 src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_remove.py create mode 100644 src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_show.py diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_create.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_create.py index d27e7c394b0..fc32f68cfc0 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_create.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2025-07-01"], ] } @@ -148,7 +148,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_delete.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_delete.py index dd7ea84d6ce..088edb7e7ad 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_delete.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2025-07-01"], ] } @@ -143,7 +143,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_list.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_list.py index bcf24933443..2cd3c57cc36 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_list.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_list.py @@ -22,10 +22,10 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.storagemover/storagemovers", "2024-07-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.storagemover/storagemovers", "2025-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers", "2025-07-01"], ] } @@ -51,12 +51,12 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) - condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) if condition_0: - self.StorageMoversList(ctx=self.ctx)() - if condition_1: self.StorageMoversListBySubscription(ctx=self.ctx)() + if condition_1: + self.StorageMoversList(ctx=self.ctx)() self.post_operations() @register_callback @@ -72,7 +72,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class StorageMoversList(AAZHttpOperation): + class StorageMoversListBySubscription(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -86,7 +86,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageMover/storageMovers", + "/subscriptions/{subscriptionId}/providers/Microsoft.StorageMover/storageMovers", **self.url_parameters ) @@ -101,10 +101,6 @@ def error_format(self): @property def url_parameters(self): parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -116,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -151,7 +147,6 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) _schema_on_200.value = AAZListType( flags={"read_only": True}, @@ -214,7 +209,7 @@ def _build_schema_on_200(cls): return cls._schema_on_200 - class StorageMoversListBySubscription(AAZHttpOperation): + class StorageMoversList(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -228,7 +223,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/providers/Microsoft.StorageMover/storageMovers", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageMover/storageMovers", **self.url_parameters ) @@ -243,6 +238,10 @@ def error_format(self): @property def url_parameters(self): parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -254,7 +253,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -289,7 +288,6 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) _schema_on_200.value = AAZListType( flags={"read_only": True}, diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_show.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_show.py index b6ce20ce8ad..c5772333dae 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_show.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2025-07-01"], ] } @@ -120,7 +120,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_update.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_update.py index 8d481ddcd7f..900c063fbfb 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_update.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2025-07-01"], ] } @@ -160,7 +160,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -243,7 +243,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_wait.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_wait.py index 09fcb0ab44c..8f83904c4b6 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_wait.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}", "2025-07-01"], ] } @@ -116,7 +116,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_create.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_create.py index acfedfe72e8..96f738140ec 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_create.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_create.py @@ -16,9 +16,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2025-07-01"], ] } @@ -105,7 +105,6 @@ def _build_arguments_schema(cls, *args, **kwargs): required=True, fmt=AAZIntArgFormat( maximum=2147483647, - minimum=0, ), ) _element.start_time = AAZObjectArg( @@ -142,10 +141,10 @@ def _build_args_time_create(cls, _schema): minimum=0, ), ) - time_create.minute = AAZIntArg( + time_create.minute = AAZFloatArg( options=["minute"], help="The minute element of the time. Allowed values are 0 and 30. If not specified, its value defaults to 0.", - default=0, + default=0.0, enum={"0": 0, "30": 30}, ) @@ -221,7 +220,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -430,7 +429,7 @@ def _build_schema_time_create(cls, _builder): if _builder is None: return _builder.set_prop("hour", AAZIntType, ".hour", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("minute", AAZIntType, ".minute") + _builder.set_prop("minute", AAZFloatType, ".minute") _schema_time_read = None @@ -447,7 +446,7 @@ def _build_schema_time_read(cls, _schema): time_read.hour = AAZIntType( flags={"required": True}, ) - time_read.minute = AAZIntType() + time_read.minute = AAZFloatType() _schema.hour = cls._schema_time_read.hour _schema.minute = cls._schema_time_read.minute diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_list.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_list.py index c415c9ecde9..2efa375ca03 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_list.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents", "2025-07-01"], ] } @@ -121,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -156,7 +156,6 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) _schema_on_200.value = AAZListType( flags={"read_only": True}, @@ -312,7 +311,7 @@ def _build_schema_time_read(cls, _schema): time_read.hour = AAZIntType( flags={"required": True}, ) - time_read.minute = AAZIntType() + time_read.minute = AAZFloatType() _schema.hour = cls._schema_time_read.hour _schema.minute = cls._schema_time_read.minute diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_show.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_show.py index 044302899a0..85c96ad044f 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_show.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2025-07-01"], ] } @@ -130,7 +130,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -309,7 +309,7 @@ def _build_schema_time_read(cls, _schema): time_read.hour = AAZIntType( flags={"required": True}, ) - time_read.minute = AAZIntType() + time_read.minute = AAZFloatType() _schema.hour = cls._schema_time_read.hour _schema.minute = cls._schema_time_read.minute diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_unregister.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_unregister.py index 0925bf45b0f..79c114f225d 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_unregister.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_unregister.py @@ -23,9 +23,9 @@ class Unregister(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2025-07-01"], ] } @@ -153,7 +153,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_update.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_update.py index 62221956657..00def122987 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_update.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_update.py @@ -31,9 +31,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2025-07-01"], ] } @@ -114,7 +114,6 @@ def _build_arguments_schema(cls, *args, **kwargs): help="The WAN-link upload bandwidth (maximum data transfer rate) in megabits per second. Value of 0 indicates no throughput is allowed and any running migration job is effectively paused for the duration of this recurrence. Only data plane operations are governed by this limit. Control plane operations ensure seamless functionality. The agent may exceed this limit with control messages, if necessary.", fmt=AAZIntArgFormat( maximum=2147483647, - minimum=0, ), ) _element.start_time = AAZObjectArg( @@ -150,7 +149,7 @@ def _build_args_time_update(cls, _schema): minimum=0, ), ) - time_update.minute = AAZIntArg( + time_update.minute = AAZFloatArg( options=["minute"], help="The minute element of the time. Allowed values are 0 and 30. If not specified, its value defaults to 0.", nullable=True, @@ -242,7 +241,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -329,7 +328,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -432,7 +431,7 @@ def _build_schema_time_update(cls, _builder): if _builder is None: return _builder.set_prop("hour", AAZIntType, ".hour", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("minute", AAZIntType, ".minute") + _builder.set_prop("minute", AAZFloatType, ".minute") _schema_agent_read = None @@ -595,7 +594,7 @@ def _build_schema_time_read(cls, _schema): time_read.hour = AAZIntType( flags={"required": True}, ) - time_read.minute = AAZIntType() + time_read.minute = AAZFloatType() _schema.hour = cls._schema_time_read.hour _schema.minute = cls._schema_time_read.minute diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_wait.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_wait.py index 4998780bed8..cb7f7bad538 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_wait.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/agent/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/agents/{}", "2025-07-01"], ] } @@ -126,7 +126,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -305,7 +305,7 @@ def _build_schema_time_read(cls, _schema): time_read.hour = AAZIntType( flags={"required": True}, ) - time_read.minute = AAZIntType() + time_read.minute = AAZFloatType() _schema.hour = cls._schema_time_read.hour _schema.minute = cls._schema_time_read.minute diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_create.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_create.py index b1f137ce316..4ce50a355bb 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_create.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_create.py @@ -16,9 +16,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2025-07-01"], ] } @@ -52,14 +52,41 @@ def _build_arguments_schema(cls, *args, **kwargs): required=True, ) + # define Arg Group "Identity" + + _args_schema = cls._args_schema + _args_schema.mi_system_assigned = AAZStrArg( + options=["--system-assigned", "--mi-system-assigned"], + arg_group="Identity", + help="Set the system managed identity.", + blank="True", + ) + _args_schema.mi_user_assigned = AAZListArg( + options=["--user-assigned", "--mi-user-assigned"], + arg_group="Identity", + help="Set the user managed identities.", + blank=[], + ) + + mi_user_assigned = cls._args_schema.mi_user_assigned + mi_user_assigned.Element = AAZStrArg() + # define Arg Group "Properties" _args_schema = cls._args_schema + _args_schema.azure_multi_cloud_connector = AAZObjectArg( + options=["--azure-multi-cloud-connector"], + arg_group="Properties", + ) _args_schema.storage_blob_container = AAZObjectArg( options=["--storage-blob-container"], arg_group="Properties", help="Storage Blob Container Object", ) + _args_schema.azure_storage_nfs_file_share = AAZObjectArg( + options=["--azure-storage-nfs-file-share"], + arg_group="Properties", + ) _args_schema.azure_storage_smb_file_share = AAZObjectArg( options=["--azure-storage-smb-file-share"], arg_group="Properties", @@ -78,6 +105,18 @@ def _build_arguments_schema(cls, *args, **kwargs): help="A description for the Endpoint.", ) + azure_multi_cloud_connector = cls._args_schema.azure_multi_cloud_connector + azure_multi_cloud_connector.aws_s3_bucket_id = AAZResourceIdArg( + options=["aws-s3-bucket-id"], + help="The AWS S3 bucket ARM resource Id.", + required=True, + ) + azure_multi_cloud_connector.multi_cloud_connector_id = AAZResourceIdArg( + options=["multi-cloud-connector-id"], + help="The Azure Resource ID of the MultiCloud Connector resource.", + required=True, + ) + storage_blob_container = cls._args_schema.storage_blob_container storage_blob_container.blob_container_name = AAZStrArg( options=["blob-container-name"], @@ -90,6 +129,18 @@ def _build_arguments_schema(cls, *args, **kwargs): required=True, ) + azure_storage_nfs_file_share = cls._args_schema.azure_storage_nfs_file_share + azure_storage_nfs_file_share.file_share_name = AAZStrArg( + options=["file-share-name"], + help="The name of the Azure Storage NFS file share.", + required=True, + ) + azure_storage_nfs_file_share.storage_account_resource_id = AAZResourceIdArg( + options=["storage-account-resource-id"], + help="The Azure Resource ID of the storage account.", + required=True, + ) + azure_storage_smb_file_share = cls._args_schema.azure_storage_smb_file_share azure_storage_smb_file_share.file_share_name = AAZStrArg( options=["file-share-name"], @@ -215,7 +266,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -240,25 +291,49 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) + _builder.set_prop("identity", AAZIdentityObjectType) _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True}}) + identity = _builder.get(".identity") + if identity is not None: + identity.set_prop("userAssigned", AAZListType, ".mi_user_assigned", typ_kwargs={"flags": {"action": "create"}}) + identity.set_prop("systemAssigned", AAZStrType, ".mi_system_assigned", typ_kwargs={"flags": {"action": "create"}}) + + user_assigned = _builder.get(".identity.userAssigned") + if user_assigned is not None: + user_assigned.set_elements(AAZStrType, ".") + properties = _builder.get(".properties") if properties is not None: properties.set_prop("description", AAZStrType, ".description") + properties.set_const("endpointType", "AzureMultiCloudConnector", AAZStrType, ".azure_multi_cloud_connector", typ_kwargs={"flags": {"required": True}}) properties.set_const("endpointType", "AzureStorageBlobContainer", AAZStrType, ".storage_blob_container", typ_kwargs={"flags": {"required": True}}) + properties.set_const("endpointType", "AzureStorageNfsFileShare", AAZStrType, ".azure_storage_nfs_file_share", typ_kwargs={"flags": {"required": True}}) properties.set_const("endpointType", "AzureStorageSmbFileShare", AAZStrType, ".azure_storage_smb_file_share", typ_kwargs={"flags": {"required": True}}) properties.set_const("endpointType", "NfsMount", AAZStrType, ".nfs_mount", typ_kwargs={"flags": {"required": True}}) properties.set_const("endpointType", "SmbMount", AAZStrType, ".smb_mount", typ_kwargs={"flags": {"required": True}}) + properties.discriminate_by("endpointType", "AzureMultiCloudConnector") properties.discriminate_by("endpointType", "AzureStorageBlobContainer") + properties.discriminate_by("endpointType", "AzureStorageNfsFileShare") properties.discriminate_by("endpointType", "AzureStorageSmbFileShare") properties.discriminate_by("endpointType", "NfsMount") properties.discriminate_by("endpointType", "SmbMount") + disc_azure_multi_cloud_connector = _builder.get(".properties{endpointType:AzureMultiCloudConnector}") + if disc_azure_multi_cloud_connector is not None: + disc_azure_multi_cloud_connector.set_prop("awsS3BucketId", AAZStrType, ".azure_multi_cloud_connector.aws_s3_bucket_id", typ_kwargs={"flags": {"required": True}}) + disc_azure_multi_cloud_connector.set_prop("multiCloudConnectorId", AAZStrType, ".azure_multi_cloud_connector.multi_cloud_connector_id", typ_kwargs={"flags": {"required": True}}) + disc_azure_storage_blob_container = _builder.get(".properties{endpointType:AzureStorageBlobContainer}") if disc_azure_storage_blob_container is not None: disc_azure_storage_blob_container.set_prop("blobContainerName", AAZStrType, ".storage_blob_container.blob_container_name", typ_kwargs={"flags": {"required": True}}) disc_azure_storage_blob_container.set_prop("storageAccountResourceId", AAZStrType, ".storage_blob_container.storage_account_resource_id", typ_kwargs={"flags": {"required": True}}) + disc_azure_storage_nfs_file_share = _builder.get(".properties{endpointType:AzureStorageNfsFileShare}") + if disc_azure_storage_nfs_file_share is not None: + disc_azure_storage_nfs_file_share.set_prop("fileShareName", AAZStrType, ".azure_storage_nfs_file_share.file_share_name", typ_kwargs={"flags": {"required": True}}) + disc_azure_storage_nfs_file_share.set_prop("storageAccountResourceId", AAZStrType, ".azure_storage_nfs_file_share.storage_account_resource_id", typ_kwargs={"flags": {"required": True}}) + disc_azure_storage_smb_file_share = _builder.get(".properties{endpointType:AzureStorageSmbFileShare}") if disc_azure_storage_smb_file_share is not None: disc_azure_storage_smb_file_share.set_prop("fileShareName", AAZStrType, ".azure_storage_smb_file_share.file_share_name", typ_kwargs={"flags": {"required": True}}) @@ -305,6 +380,7 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) + _schema_on_200.identity = AAZIdentityObjectType() _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) @@ -319,6 +395,35 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + identity = cls._schema_on_200.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + properties = cls._schema_on_200.properties properties.description = AAZStrType() properties.endpoint_type = AAZStrType( @@ -330,6 +435,16 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + disc_azure_multi_cloud_connector = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureMultiCloudConnector") + disc_azure_multi_cloud_connector.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + flags={"required": True}, + ) + disc_azure_multi_cloud_connector.multi_cloud_connector_id = AAZStrType( + serialized_name="multiCloudConnectorId", + flags={"required": True}, + ) + disc_azure_storage_blob_container = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageBlobContainer") disc_azure_storage_blob_container.blob_container_name = AAZStrType( serialized_name="blobContainerName", @@ -340,6 +455,16 @@ def _build_schema_on_200(cls): flags={"required": True}, ) + disc_azure_storage_nfs_file_share = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageNfsFileShare") + disc_azure_storage_nfs_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_nfs_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + disc_azure_storage_smb_file_share = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageSmbFileShare") disc_azure_storage_smb_file_share.file_share_name = AAZStrType( serialized_name="fileShareName", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_delete.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_delete.py index d7fa1286c20..177c0be51fc 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_delete.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2025-07-01"], ] } @@ -153,7 +153,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_list.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_list.py index d6eedfd3596..845040e3284 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_list.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints", "2025-07-01"], ] } @@ -121,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -156,7 +156,6 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) _schema_on_200.value = AAZListType( flags={"read_only": True}, @@ -169,6 +168,7 @@ def _build_schema_on_200(cls): _element.id = AAZStrType( flags={"read_only": True}, ) + _element.identity = AAZIdentityObjectType() _element.name = AAZStrType( flags={"read_only": True}, ) @@ -183,6 +183,35 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + identity = cls._schema_on_200.value.Element.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.value.Element.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + properties = cls._schema_on_200.value.Element.properties properties.description = AAZStrType() properties.endpoint_type = AAZStrType( @@ -194,6 +223,16 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + disc_azure_multi_cloud_connector = cls._schema_on_200.value.Element.properties.discriminate_by("endpoint_type", "AzureMultiCloudConnector") + disc_azure_multi_cloud_connector.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + flags={"required": True}, + ) + disc_azure_multi_cloud_connector.multi_cloud_connector_id = AAZStrType( + serialized_name="multiCloudConnectorId", + flags={"required": True}, + ) + disc_azure_storage_blob_container = cls._schema_on_200.value.Element.properties.discriminate_by("endpoint_type", "AzureStorageBlobContainer") disc_azure_storage_blob_container.blob_container_name = AAZStrType( serialized_name="blobContainerName", @@ -204,6 +243,16 @@ def _build_schema_on_200(cls): flags={"required": True}, ) + disc_azure_storage_nfs_file_share = cls._schema_on_200.value.Element.properties.discriminate_by("endpoint_type", "AzureStorageNfsFileShare") + disc_azure_storage_nfs_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_nfs_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + disc_azure_storage_smb_file_share = cls._schema_on_200.value.Element.properties.discriminate_by("endpoint_type", "AzureStorageSmbFileShare") disc_azure_storage_smb_file_share.file_share_name = AAZStrType( serialized_name="fileShareName", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_show.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_show.py index f38dd557342..3823eb9f257 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_show.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2025-07-01"], ] } @@ -130,7 +130,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -166,6 +166,7 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) + _schema_on_200.identity = AAZIdentityObjectType() _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) @@ -180,6 +181,35 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + identity = cls._schema_on_200.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + properties = cls._schema_on_200.properties properties.description = AAZStrType() properties.endpoint_type = AAZStrType( @@ -191,6 +221,16 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + disc_azure_multi_cloud_connector = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureMultiCloudConnector") + disc_azure_multi_cloud_connector.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + flags={"required": True}, + ) + disc_azure_multi_cloud_connector.multi_cloud_connector_id = AAZStrType( + serialized_name="multiCloudConnectorId", + flags={"required": True}, + ) + disc_azure_storage_blob_container = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageBlobContainer") disc_azure_storage_blob_container.blob_container_name = AAZStrType( serialized_name="blobContainerName", @@ -201,6 +241,16 @@ def _build_schema_on_200(cls): flags={"required": True}, ) + disc_azure_storage_nfs_file_share = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageNfsFileShare") + disc_azure_storage_nfs_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_nfs_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + disc_azure_storage_smb_file_share = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageSmbFileShare") disc_azure_storage_smb_file_share.file_share_name = AAZStrType( serialized_name="fileShareName", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_update.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_update.py index f28dd7a5958..39d54b4e03a 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_update.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_update.py @@ -16,9 +16,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2025-07-01"], ] } @@ -56,13 +56,14 @@ def _build_arguments_schema(cls, *args, **kwargs): id_part="name", ) + # define Arg Group "Identity" + # define Arg Group "Properties" _args_schema = cls._args_schema - _args_schema.storage_blob_container = AAZObjectArg( - options=["--storage-blob-container"], + _args_schema.azure_multi_cloud_connector = AAZObjectArg( + options=["--azure-multi-cloud-connector"], arg_group="Properties", - help="Storage Blob Container Object", ) _args_schema.smb_mount = AAZObjectArg( options=["--smb-mount"], @@ -75,10 +76,10 @@ def _build_arguments_schema(cls, *args, **kwargs): nullable=True, ) - storage_blob_container = cls._args_schema.storage_blob_container - storage_blob_container.storage_account_resource_id = AAZResourceIdArg( - options=["storage-account-resource-id"], - help="The Azure Resource ID of the storage account that is the target destination.", + azure_multi_cloud_connector = cls._args_schema.azure_multi_cloud_connector + azure_multi_cloud_connector.aws_s3_bucket_id = AAZResourceIdArg( + options=["aws-s3-bucket-id"], + help="The AWS S3 bucket ARM resource Id.", ) smb_mount = cls._args_schema.smb_mount @@ -183,7 +184,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -270,7 +271,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -328,17 +329,18 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) + _builder.set_prop("identity", AAZIdentityObjectType) _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True}}) properties = _builder.get(".properties") if properties is not None: properties.set_prop("description", AAZStrType, ".description") - properties.discriminate_by("endpointType", "AzureStorageBlobContainer") + properties.discriminate_by("endpointType", "AzureMultiCloudConnector") properties.discriminate_by("endpointType", "SmbMount") - disc_azure_storage_blob_container = _builder.get(".properties{endpointType:AzureStorageBlobContainer}") - if disc_azure_storage_blob_container is not None: - disc_azure_storage_blob_container.set_prop("storageAccountResourceId", AAZStrType, ".storage_blob_container.storage_account_resource_id", typ_kwargs={"flags": {"required": True}}) + disc_azure_multi_cloud_connector = _builder.get(".properties{endpointType:AzureMultiCloudConnector}") + if disc_azure_multi_cloud_connector is not None: + disc_azure_multi_cloud_connector.set_prop("awsS3BucketId", AAZStrType, ".azure_multi_cloud_connector.aws_s3_bucket_id", typ_kwargs={"flags": {"required": True}}) disc_smb_mount = _builder.get(".properties{endpointType:SmbMount}") if disc_smb_mount is not None: @@ -347,7 +349,6 @@ def _update_instance(self, instance): credentials = _builder.get(".properties{endpointType:SmbMount}.credentials") if credentials is not None: credentials.set_prop("passwordUri", AAZStrType, ".password_uri") - credentials.set_const("type", "AzureKeyVaultSmb", AAZStrType, ".", typ_kwargs={"flags": {"required": True}}) credentials.set_prop("usernameUri", AAZStrType, ".username_uri") return _instance_value @@ -370,6 +371,7 @@ class _UpdateHelper: def _build_schema_endpoint_read(cls, _schema): if cls._schema_endpoint_read is not None: _schema.id = cls._schema_endpoint_read.id + _schema.identity = cls._schema_endpoint_read.identity _schema.name = cls._schema_endpoint_read.name _schema.properties = cls._schema_endpoint_read.properties _schema.system_data = cls._schema_endpoint_read.system_data @@ -382,6 +384,7 @@ def _build_schema_endpoint_read(cls, _schema): endpoint_read.id = AAZStrType( flags={"read_only": True}, ) + endpoint_read.identity = AAZIdentityObjectType() endpoint_read.name = AAZStrType( flags={"read_only": True}, ) @@ -396,6 +399,35 @@ def _build_schema_endpoint_read(cls, _schema): flags={"read_only": True}, ) + identity = _schema_endpoint_read.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = _schema_endpoint_read.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = _schema_endpoint_read.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + properties = _schema_endpoint_read.properties properties.description = AAZStrType() properties.endpoint_type = AAZStrType( @@ -407,6 +439,16 @@ def _build_schema_endpoint_read(cls, _schema): flags={"read_only": True}, ) + disc_azure_multi_cloud_connector = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureMultiCloudConnector") + disc_azure_multi_cloud_connector.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + flags={"required": True}, + ) + disc_azure_multi_cloud_connector.multi_cloud_connector_id = AAZStrType( + serialized_name="multiCloudConnectorId", + flags={"required": True}, + ) + disc_azure_storage_blob_container = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageBlobContainer") disc_azure_storage_blob_container.blob_container_name = AAZStrType( serialized_name="blobContainerName", @@ -417,6 +459,16 @@ def _build_schema_endpoint_read(cls, _schema): flags={"required": True}, ) + disc_azure_storage_nfs_file_share = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageNfsFileShare") + disc_azure_storage_nfs_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_nfs_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + disc_azure_storage_smb_file_share = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageSmbFileShare") disc_azure_storage_smb_file_share.file_share_name = AAZStrType( serialized_name="fileShareName", @@ -480,6 +532,7 @@ def _build_schema_endpoint_read(cls, _schema): ) _schema.id = cls._schema_endpoint_read.id + _schema.identity = cls._schema_endpoint_read.identity _schema.name = cls._schema_endpoint_read.name _schema.properties = cls._schema_endpoint_read.properties _schema.system_data = cls._schema_endpoint_read.system_data diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_wait.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_wait.py index df609505f8c..000808a364a 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_wait.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2025-07-01"], ] } @@ -126,7 +126,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -162,6 +162,7 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) + _schema_on_200.identity = AAZIdentityObjectType() _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) @@ -176,6 +177,35 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + identity = cls._schema_on_200.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + properties = cls._schema_on_200.properties properties.description = AAZStrType() properties.endpoint_type = AAZStrType( @@ -187,6 +217,16 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + disc_azure_multi_cloud_connector = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureMultiCloudConnector") + disc_azure_multi_cloud_connector.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + flags={"required": True}, + ) + disc_azure_multi_cloud_connector.multi_cloud_connector_id = AAZStrType( + serialized_name="multiCloudConnectorId", + flags={"required": True}, + ) + disc_azure_storage_blob_container = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageBlobContainer") disc_azure_storage_blob_container.blob_container_name = AAZStrType( serialized_name="blobContainerName", @@ -197,6 +237,16 @@ def _build_schema_on_200(cls): flags={"required": True}, ) + disc_azure_storage_nfs_file_share = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageNfsFileShare") + disc_azure_storage_nfs_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_nfs_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + disc_azure_storage_smb_file_share = cls._schema_on_200.properties.discriminate_by("endpoint_type", "AzureStorageSmbFileShare") disc_azure_storage_smb_file_share.file_share_name = AAZStrType( serialized_name="fileShareName", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/__cmd_group.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/__cmd_group.py new file mode 100644 index 00000000000..ceb554cff06 --- /dev/null +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "storage-mover endpoint identity", +) +class __CMDGroup(AAZCommandGroup): + """Manage Identity + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/__init__.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/__init__.py new file mode 100644 index 00000000000..6e361c3c498 --- /dev/null +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/__init__.py @@ -0,0 +1,14 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * +from ._assign import * +from ._remove import * +from ._show import * diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_assign.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_assign.py new file mode 100644 index 00000000000..f85f4ac5468 --- /dev/null +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_assign.py @@ -0,0 +1,503 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "storage-mover endpoint identity assign", +) +class Assign(AAZCommand): + """Assign the user or system managed identities. + """ + + _aaz_info = { + "version": "2025-07-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2025-07-01", "identity"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self.SubresourceSelector(ctx=self.ctx, name="subresource") + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.endpoint_name = AAZStrArg( + options=["-n", "--name", "--endpoint-name"], + help="The name of the Endpoint resource.", + required=True, + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.storage_mover_name = AAZStrArg( + options=["--storage-mover-name"], + help="The name of the Storage Mover resource.", + required=True, + ) + + # define Arg Group "Endpoint.identity" + + _args_schema = cls._args_schema + _args_schema.mi_system_assigned = AAZStrArg( + options=["--system-assigned", "--mi-system-assigned"], + arg_group="Endpoint.identity", + help="Set the system managed identity.", + blank="True", + ) + _args_schema.mi_user_assigned = AAZListArg( + options=["--user-assigned", "--mi-user-assigned"], + arg_group="Endpoint.identity", + help="Set the user managed identities.", + blank=[], + ) + + mi_user_assigned = cls._args_schema.mi_user_assigned + mi_user_assigned.Element = AAZStrArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.EndpointsGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.selectors.subresource.get()) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.post_instance_update(self.ctx.selectors.subresource.get()) + self.EndpointsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.selectors.subresource.get(), client_flatten=True) + return result + + class SubresourceSelector(AAZJsonSelector): + + def _get(self): + result = self.ctx.vars.instance + return result.identity + + def _set(self, value): + result = self.ctx.vars.instance + result.identity = value + return + + class EndpointsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageMover/storageMovers/{storageMoverName}/endpoints/{endpointName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "endpointName", self.ctx.args.endpoint_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "storageMoverName", self.ctx.args.storage_mover_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-07-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _AssignHelper._build_schema_endpoint_read(cls._schema_on_200) + + return cls._schema_on_200 + + class EndpointsCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageMover/storageMovers/{storageMoverName}/endpoints/{endpointName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "endpointName", self.ctx.args.endpoint_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "storageMoverName", self.ctx.args.storage_mover_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-07-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _AssignHelper._build_schema_endpoint_read(cls._schema_on_200) + + return cls._schema_on_200 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.selectors.subresource.get()) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZIdentityObjectType + ) + _builder.set_prop("userAssigned", AAZListType, ".mi_user_assigned", typ_kwargs={"flags": {"action": "assign"}}) + _builder.set_prop("systemAssigned", AAZStrType, ".mi_system_assigned", typ_kwargs={"flags": {"action": "assign"}}) + + user_assigned = _builder.get(".userAssigned") + if user_assigned is not None: + user_assigned.set_elements(AAZStrType, ".") + + return _instance_value + + +class _AssignHelper: + """Helper class for Assign""" + + _schema_endpoint_read = None + + @classmethod + def _build_schema_endpoint_read(cls, _schema): + if cls._schema_endpoint_read is not None: + _schema.id = cls._schema_endpoint_read.id + _schema.identity = cls._schema_endpoint_read.identity + _schema.name = cls._schema_endpoint_read.name + _schema.properties = cls._schema_endpoint_read.properties + _schema.system_data = cls._schema_endpoint_read.system_data + _schema.type = cls._schema_endpoint_read.type + return + + cls._schema_endpoint_read = _schema_endpoint_read = AAZObjectType() + + endpoint_read = _schema_endpoint_read + endpoint_read.id = AAZStrType( + flags={"read_only": True}, + ) + endpoint_read.identity = AAZIdentityObjectType() + endpoint_read.name = AAZStrType( + flags={"read_only": True}, + ) + endpoint_read.properties = AAZObjectType( + flags={"required": True}, + ) + endpoint_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + endpoint_read.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = _schema_endpoint_read.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = _schema_endpoint_read.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = _schema_endpoint_read.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + + properties = _schema_endpoint_read.properties + properties.description = AAZStrType() + properties.endpoint_type = AAZStrType( + serialized_name="endpointType", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + disc_azure_multi_cloud_connector = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureMultiCloudConnector") + disc_azure_multi_cloud_connector.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + flags={"required": True}, + ) + disc_azure_multi_cloud_connector.multi_cloud_connector_id = AAZStrType( + serialized_name="multiCloudConnectorId", + flags={"required": True}, + ) + + disc_azure_storage_blob_container = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageBlobContainer") + disc_azure_storage_blob_container.blob_container_name = AAZStrType( + serialized_name="blobContainerName", + flags={"required": True}, + ) + disc_azure_storage_blob_container.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_azure_storage_nfs_file_share = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageNfsFileShare") + disc_azure_storage_nfs_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_nfs_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_azure_storage_smb_file_share = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageSmbFileShare") + disc_azure_storage_smb_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_smb_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_nfs_mount = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "NfsMount") + disc_nfs_mount.export = AAZStrType( + flags={"required": True}, + ) + disc_nfs_mount.host = AAZStrType( + flags={"required": True}, + ) + disc_nfs_mount.nfs_version = AAZStrType( + serialized_name="nfsVersion", + ) + + disc_smb_mount = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "SmbMount") + disc_smb_mount.credentials = AAZObjectType() + disc_smb_mount.host = AAZStrType( + flags={"required": True}, + ) + disc_smb_mount.share_name = AAZStrType( + serialized_name="shareName", + flags={"required": True}, + ) + + credentials = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "SmbMount").credentials + credentials.password_uri = AAZStrType( + serialized_name="passwordUri", + ) + credentials.type = AAZStrType( + flags={"required": True}, + ) + credentials.username_uri = AAZStrType( + serialized_name="usernameUri", + ) + + system_data = _schema_endpoint_read.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.id = cls._schema_endpoint_read.id + _schema.identity = cls._schema_endpoint_read.identity + _schema.name = cls._schema_endpoint_read.name + _schema.properties = cls._schema_endpoint_read.properties + _schema.system_data = cls._schema_endpoint_read.system_data + _schema.type = cls._schema_endpoint_read.type + + +__all__ = ["Assign"] diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_remove.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_remove.py new file mode 100644 index 00000000000..2439099c21e --- /dev/null +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_remove.py @@ -0,0 +1,503 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "storage-mover endpoint identity remove", +) +class Remove(AAZCommand): + """Remove the user or system managed identities. + """ + + _aaz_info = { + "version": "2025-07-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2025-07-01", "identity"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self.SubresourceSelector(ctx=self.ctx, name="subresource") + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.endpoint_name = AAZStrArg( + options=["-n", "--name", "--endpoint-name"], + help="The name of the Endpoint resource.", + required=True, + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.storage_mover_name = AAZStrArg( + options=["--storage-mover-name"], + help="The name of the Storage Mover resource.", + required=True, + ) + + # define Arg Group "Endpoint.identity" + + _args_schema = cls._args_schema + _args_schema.mi_system_assigned = AAZStrArg( + options=["--system-assigned", "--mi-system-assigned"], + arg_group="Endpoint.identity", + help="Set the system managed identity.", + blank="True", + ) + _args_schema.mi_user_assigned = AAZListArg( + options=["--user-assigned", "--mi-user-assigned"], + arg_group="Endpoint.identity", + help="Set the user managed identities.", + blank=[], + ) + + mi_user_assigned = cls._args_schema.mi_user_assigned + mi_user_assigned.Element = AAZStrArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.EndpointsGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.selectors.subresource.get()) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.post_instance_update(self.ctx.selectors.subresource.get()) + self.EndpointsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.selectors.subresource.get(), client_flatten=True) + return result + + class SubresourceSelector(AAZJsonSelector): + + def _get(self): + result = self.ctx.vars.instance + return result.identity + + def _set(self, value): + result = self.ctx.vars.instance + result.identity = value + return + + class EndpointsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageMover/storageMovers/{storageMoverName}/endpoints/{endpointName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "endpointName", self.ctx.args.endpoint_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "storageMoverName", self.ctx.args.storage_mover_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-07-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _RemoveHelper._build_schema_endpoint_read(cls._schema_on_200) + + return cls._schema_on_200 + + class EndpointsCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageMover/storageMovers/{storageMoverName}/endpoints/{endpointName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "endpointName", self.ctx.args.endpoint_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "storageMoverName", self.ctx.args.storage_mover_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-07-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _RemoveHelper._build_schema_endpoint_read(cls._schema_on_200) + + return cls._schema_on_200 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.selectors.subresource.get()) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZIdentityObjectType + ) + _builder.set_prop("userAssigned", AAZListType, ".mi_user_assigned", typ_kwargs={"flags": {"action": "remove"}}) + _builder.set_prop("systemAssigned", AAZStrType, ".mi_system_assigned", typ_kwargs={"flags": {"action": "remove"}}) + + user_assigned = _builder.get(".userAssigned") + if user_assigned is not None: + user_assigned.set_elements(AAZStrType, ".") + + return _instance_value + + +class _RemoveHelper: + """Helper class for Remove""" + + _schema_endpoint_read = None + + @classmethod + def _build_schema_endpoint_read(cls, _schema): + if cls._schema_endpoint_read is not None: + _schema.id = cls._schema_endpoint_read.id + _schema.identity = cls._schema_endpoint_read.identity + _schema.name = cls._schema_endpoint_read.name + _schema.properties = cls._schema_endpoint_read.properties + _schema.system_data = cls._schema_endpoint_read.system_data + _schema.type = cls._schema_endpoint_read.type + return + + cls._schema_endpoint_read = _schema_endpoint_read = AAZObjectType() + + endpoint_read = _schema_endpoint_read + endpoint_read.id = AAZStrType( + flags={"read_only": True}, + ) + endpoint_read.identity = AAZIdentityObjectType() + endpoint_read.name = AAZStrType( + flags={"read_only": True}, + ) + endpoint_read.properties = AAZObjectType( + flags={"required": True}, + ) + endpoint_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + endpoint_read.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = _schema_endpoint_read.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = _schema_endpoint_read.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = _schema_endpoint_read.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + + properties = _schema_endpoint_read.properties + properties.description = AAZStrType() + properties.endpoint_type = AAZStrType( + serialized_name="endpointType", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + disc_azure_multi_cloud_connector = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureMultiCloudConnector") + disc_azure_multi_cloud_connector.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + flags={"required": True}, + ) + disc_azure_multi_cloud_connector.multi_cloud_connector_id = AAZStrType( + serialized_name="multiCloudConnectorId", + flags={"required": True}, + ) + + disc_azure_storage_blob_container = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageBlobContainer") + disc_azure_storage_blob_container.blob_container_name = AAZStrType( + serialized_name="blobContainerName", + flags={"required": True}, + ) + disc_azure_storage_blob_container.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_azure_storage_nfs_file_share = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageNfsFileShare") + disc_azure_storage_nfs_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_nfs_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_azure_storage_smb_file_share = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageSmbFileShare") + disc_azure_storage_smb_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_smb_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_nfs_mount = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "NfsMount") + disc_nfs_mount.export = AAZStrType( + flags={"required": True}, + ) + disc_nfs_mount.host = AAZStrType( + flags={"required": True}, + ) + disc_nfs_mount.nfs_version = AAZStrType( + serialized_name="nfsVersion", + ) + + disc_smb_mount = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "SmbMount") + disc_smb_mount.credentials = AAZObjectType() + disc_smb_mount.host = AAZStrType( + flags={"required": True}, + ) + disc_smb_mount.share_name = AAZStrType( + serialized_name="shareName", + flags={"required": True}, + ) + + credentials = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "SmbMount").credentials + credentials.password_uri = AAZStrType( + serialized_name="passwordUri", + ) + credentials.type = AAZStrType( + flags={"required": True}, + ) + credentials.username_uri = AAZStrType( + serialized_name="usernameUri", + ) + + system_data = _schema_endpoint_read.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.id = cls._schema_endpoint_read.id + _schema.identity = cls._schema_endpoint_read.identity + _schema.name = cls._schema_endpoint_read.name + _schema.properties = cls._schema_endpoint_read.properties + _schema.system_data = cls._schema_endpoint_read.system_data + _schema.type = cls._schema_endpoint_read.type + + +__all__ = ["Remove"] diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_show.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_show.py new file mode 100644 index 00000000000..4f7218b6f06 --- /dev/null +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_show.py @@ -0,0 +1,353 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "storage-mover endpoint identity show", +) +class Show(AAZCommand): + """Show the details of managed identities. + """ + + _aaz_info = { + "version": "2025-07-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/endpoints/{}", "2025-07-01", "identity"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self.SubresourceSelector(ctx=self.ctx, name="subresource") + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.endpoint_name = AAZStrArg( + options=["-n", "--name", "--endpoint-name"], + help="The name of the Endpoint resource.", + required=True, + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.storage_mover_name = AAZStrArg( + options=["--storage-mover-name"], + help="The name of the Storage Mover resource.", + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.EndpointsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.selectors.subresource.required(), client_flatten=True) + return result + + class SubresourceSelector(AAZJsonSelector): + + def _get(self): + result = self.ctx.vars.instance + return result.identity + + def _set(self, value): + result = self.ctx.vars.instance + result.identity = value + return + + class EndpointsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageMover/storageMovers/{storageMoverName}/endpoints/{endpointName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "endpointName", self.ctx.args.endpoint_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "storageMoverName", self.ctx.args.storage_mover_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-07-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _ShowHelper._build_schema_endpoint_read(cls._schema_on_200) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + _schema_endpoint_read = None + + @classmethod + def _build_schema_endpoint_read(cls, _schema): + if cls._schema_endpoint_read is not None: + _schema.id = cls._schema_endpoint_read.id + _schema.identity = cls._schema_endpoint_read.identity + _schema.name = cls._schema_endpoint_read.name + _schema.properties = cls._schema_endpoint_read.properties + _schema.system_data = cls._schema_endpoint_read.system_data + _schema.type = cls._schema_endpoint_read.type + return + + cls._schema_endpoint_read = _schema_endpoint_read = AAZObjectType() + + endpoint_read = _schema_endpoint_read + endpoint_read.id = AAZStrType( + flags={"read_only": True}, + ) + endpoint_read.identity = AAZIdentityObjectType() + endpoint_read.name = AAZStrType( + flags={"read_only": True}, + ) + endpoint_read.properties = AAZObjectType( + flags={"required": True}, + ) + endpoint_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + endpoint_read.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = _schema_endpoint_read.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = _schema_endpoint_read.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = _schema_endpoint_read.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + + properties = _schema_endpoint_read.properties + properties.description = AAZStrType() + properties.endpoint_type = AAZStrType( + serialized_name="endpointType", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + disc_azure_multi_cloud_connector = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureMultiCloudConnector") + disc_azure_multi_cloud_connector.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + flags={"required": True}, + ) + disc_azure_multi_cloud_connector.multi_cloud_connector_id = AAZStrType( + serialized_name="multiCloudConnectorId", + flags={"required": True}, + ) + + disc_azure_storage_blob_container = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageBlobContainer") + disc_azure_storage_blob_container.blob_container_name = AAZStrType( + serialized_name="blobContainerName", + flags={"required": True}, + ) + disc_azure_storage_blob_container.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_azure_storage_nfs_file_share = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageNfsFileShare") + disc_azure_storage_nfs_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_nfs_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_azure_storage_smb_file_share = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "AzureStorageSmbFileShare") + disc_azure_storage_smb_file_share.file_share_name = AAZStrType( + serialized_name="fileShareName", + flags={"required": True}, + ) + disc_azure_storage_smb_file_share.storage_account_resource_id = AAZStrType( + serialized_name="storageAccountResourceId", + flags={"required": True}, + ) + + disc_nfs_mount = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "NfsMount") + disc_nfs_mount.export = AAZStrType( + flags={"required": True}, + ) + disc_nfs_mount.host = AAZStrType( + flags={"required": True}, + ) + disc_nfs_mount.nfs_version = AAZStrType( + serialized_name="nfsVersion", + ) + + disc_smb_mount = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "SmbMount") + disc_smb_mount.credentials = AAZObjectType() + disc_smb_mount.host = AAZStrType( + flags={"required": True}, + ) + disc_smb_mount.share_name = AAZStrType( + serialized_name="shareName", + flags={"required": True}, + ) + + credentials = _schema_endpoint_read.properties.discriminate_by("endpoint_type", "SmbMount").credentials + credentials.password_uri = AAZStrType( + serialized_name="passwordUri", + ) + credentials.type = AAZStrType( + flags={"required": True}, + ) + credentials.username_uri = AAZStrType( + serialized_name="usernameUri", + ) + + system_data = _schema_endpoint_read.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.id = cls._schema_endpoint_read.id + _schema.identity = cls._schema_endpoint_read.identity + _schema.name = cls._schema_endpoint_read.name + _schema.properties = cls._schema_endpoint_read.properties + _schema.system_data = cls._schema_endpoint_read.system_data + _schema.type = cls._schema_endpoint_read.type + + +__all__ = ["Show"] diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_create.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_create.py index 14627a8a7f3..725dfb0db9a 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_create.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2025-07-01"], ] } @@ -83,6 +83,13 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="A description for the Job Definition.", ) + _args_schema.job_type = AAZStrArg( + options=["--job-type"], + arg_group="Properties", + help="The type of the Job.", + default="OnPremToCloud", + enum={"CloudToCloud": "CloudToCloud", "OnPremToCloud": "OnPremToCloud"}, + ) _args_schema.source_name = AAZStrArg( options=["--source-name"], arg_group="Properties", @@ -180,7 +187,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -212,6 +219,7 @@ def content(self): properties.set_prop("agentName", AAZStrType, ".agent_name") properties.set_prop("copyMode", AAZStrType, ".copy_mode", typ_kwargs={"flags": {"required": True}}) properties.set_prop("description", AAZStrType, ".description") + properties.set_prop("jobType", AAZStrType, ".job_type") properties.set_prop("sourceName", AAZStrType, ".source_name", typ_kwargs={"flags": {"required": True}}) properties.set_prop("sourceSubpath", AAZStrType, ".source_subpath") properties.set_prop("targetName", AAZStrType, ".target_name", typ_kwargs={"flags": {"required": True}}) @@ -267,6 +275,9 @@ def _build_schema_on_200(cls): flags={"required": True}, ) properties.description = AAZStrType() + properties.job_type = AAZStrType( + serialized_name="jobType", + ) properties.latest_job_run_name = AAZStrType( serialized_name="latestJobRunName", flags={"read_only": True}, @@ -294,6 +305,9 @@ def _build_schema_on_200(cls): properties.source_subpath = AAZStrType( serialized_name="sourceSubpath", ) + properties.source_target_map = AAZObjectType( + serialized_name="sourceTargetMap", + ) properties.target_name = AAZStrType( serialized_name="targetName", flags={"required": True}, @@ -306,6 +320,51 @@ def _build_schema_on_200(cls): serialized_name="targetSubpath", ) + source_target_map = cls._schema_on_200.properties.source_target_map + source_target_map.value = AAZListType( + flags={"read_only": True}, + ) + + value = cls._schema_on_200.properties.source_target_map.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.source_target_map.value.Element + _element.source_endpoint = AAZObjectType( + serialized_name="sourceEndpoint", + flags={"required": True}, + ) + _element.target_endpoint = AAZObjectType( + serialized_name="targetEndpoint", + flags={"required": True}, + ) + + source_endpoint = cls._schema_on_200.properties.source_target_map.value.Element.source_endpoint + source_endpoint.properties = AAZObjectType() + + properties = cls._schema_on_200.properties.source_target_map.value.Element.source_endpoint.properties + properties.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + ) + properties.name = AAZStrType() + properties.source_endpoint_resource_id = AAZStrType( + serialized_name="sourceEndpointResourceId", + ) + + target_endpoint = cls._schema_on_200.properties.source_target_map.value.Element.target_endpoint + target_endpoint.properties = AAZObjectType() + + properties = cls._schema_on_200.properties.source_target_map.value.Element.target_endpoint.properties + properties.azure_storage_account_resource_id = AAZStrType( + serialized_name="azureStorageAccountResourceId", + ) + properties.azure_storage_blob_container_name = AAZStrType( + serialized_name="azureStorageBlobContainerName", + ) + properties.name = AAZStrType() + properties.target_endpoint_resource_id = AAZStrType( + serialized_name="targetEndpointResourceId", + ) + system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_delete.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_delete.py index 027da1b73d9..39106691091 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_delete.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2025-07-01"], ] } @@ -163,7 +163,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_list.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_list.py index d9a7e1b9066..327d250d16a 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_list.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions", "2025-07-01"], ] } @@ -130,7 +130,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -165,7 +165,6 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) _schema_on_200.value = AAZListType( flags={"read_only": True}, @@ -205,6 +204,9 @@ def _build_schema_on_200(cls): flags={"required": True}, ) properties.description = AAZStrType() + properties.job_type = AAZStrType( + serialized_name="jobType", + ) properties.latest_job_run_name = AAZStrType( serialized_name="latestJobRunName", flags={"read_only": True}, @@ -232,6 +234,9 @@ def _build_schema_on_200(cls): properties.source_subpath = AAZStrType( serialized_name="sourceSubpath", ) + properties.source_target_map = AAZObjectType( + serialized_name="sourceTargetMap", + ) properties.target_name = AAZStrType( serialized_name="targetName", flags={"required": True}, @@ -244,6 +249,51 @@ def _build_schema_on_200(cls): serialized_name="targetSubpath", ) + source_target_map = cls._schema_on_200.value.Element.properties.source_target_map + source_target_map.value = AAZListType( + flags={"read_only": True}, + ) + + value = cls._schema_on_200.value.Element.properties.source_target_map.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.source_target_map.value.Element + _element.source_endpoint = AAZObjectType( + serialized_name="sourceEndpoint", + flags={"required": True}, + ) + _element.target_endpoint = AAZObjectType( + serialized_name="targetEndpoint", + flags={"required": True}, + ) + + source_endpoint = cls._schema_on_200.value.Element.properties.source_target_map.value.Element.source_endpoint + source_endpoint.properties = AAZObjectType() + + properties = cls._schema_on_200.value.Element.properties.source_target_map.value.Element.source_endpoint.properties + properties.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + ) + properties.name = AAZStrType() + properties.source_endpoint_resource_id = AAZStrType( + serialized_name="sourceEndpointResourceId", + ) + + target_endpoint = cls._schema_on_200.value.Element.properties.source_target_map.value.Element.target_endpoint + target_endpoint.properties = AAZObjectType() + + properties = cls._schema_on_200.value.Element.properties.source_target_map.value.Element.target_endpoint.properties + properties.azure_storage_account_resource_id = AAZStrType( + serialized_name="azureStorageAccountResourceId", + ) + properties.azure_storage_blob_container_name = AAZStrType( + serialized_name="azureStorageBlobContainerName", + ) + properties.name = AAZStrType() + properties.target_endpoint_resource_id = AAZStrType( + serialized_name="targetEndpointResourceId", + ) + system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_show.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_show.py index 1fc838d1090..4633d903213 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_show.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2025-07-01"], ] } @@ -140,7 +140,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -203,6 +203,9 @@ def _build_schema_on_200(cls): flags={"required": True}, ) properties.description = AAZStrType() + properties.job_type = AAZStrType( + serialized_name="jobType", + ) properties.latest_job_run_name = AAZStrType( serialized_name="latestJobRunName", flags={"read_only": True}, @@ -230,6 +233,9 @@ def _build_schema_on_200(cls): properties.source_subpath = AAZStrType( serialized_name="sourceSubpath", ) + properties.source_target_map = AAZObjectType( + serialized_name="sourceTargetMap", + ) properties.target_name = AAZStrType( serialized_name="targetName", flags={"required": True}, @@ -242,6 +248,51 @@ def _build_schema_on_200(cls): serialized_name="targetSubpath", ) + source_target_map = cls._schema_on_200.properties.source_target_map + source_target_map.value = AAZListType( + flags={"read_only": True}, + ) + + value = cls._schema_on_200.properties.source_target_map.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.source_target_map.value.Element + _element.source_endpoint = AAZObjectType( + serialized_name="sourceEndpoint", + flags={"required": True}, + ) + _element.target_endpoint = AAZObjectType( + serialized_name="targetEndpoint", + flags={"required": True}, + ) + + source_endpoint = cls._schema_on_200.properties.source_target_map.value.Element.source_endpoint + source_endpoint.properties = AAZObjectType() + + properties = cls._schema_on_200.properties.source_target_map.value.Element.source_endpoint.properties + properties.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + ) + properties.name = AAZStrType() + properties.source_endpoint_resource_id = AAZStrType( + serialized_name="sourceEndpointResourceId", + ) + + target_endpoint = cls._schema_on_200.properties.source_target_map.value.Element.target_endpoint + target_endpoint.properties = AAZObjectType() + + properties = cls._schema_on_200.properties.source_target_map.value.Element.target_endpoint.properties + properties.azure_storage_account_resource_id = AAZStrType( + serialized_name="azureStorageAccountResourceId", + ) + properties.azure_storage_blob_container_name = AAZStrType( + serialized_name="azureStorageBlobContainerName", + ) + properties.name = AAZStrType() + properties.target_endpoint_resource_id = AAZStrType( + serialized_name="targetEndpointResourceId", + ) + system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_start_job.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_start_job.py index 60c8dfbd44a..f3154706b11 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_start_job.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_start_job.py @@ -22,9 +22,9 @@ class StartJob(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}/startjob", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}/startjob", "2025-07-01"], ] } @@ -140,7 +140,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_stop_job.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_stop_job.py index 5800b01630d..9aac882c662 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_stop_job.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_stop_job.py @@ -22,9 +22,9 @@ class StopJob(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}/stopjob", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}/stopjob", "2025-07-01"], ] } @@ -140,7 +140,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_update.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_update.py index 4d17a02c74b..b5feceaac77 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_update.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2025-07-01"], ] } @@ -89,6 +89,13 @@ def _build_arguments_schema(cls, *args, **kwargs): help="A description for the Job Definition.", nullable=True, ) + _args_schema.job_type = AAZStrArg( + options=["--job-type"], + arg_group="Properties", + help="The type of the Job.", + nullable=True, + enum={"CloudToCloud": "CloudToCloud", "OnPremToCloud": "OnPremToCloud"}, + ) return cls._args_schema def _execute_operations(self): @@ -177,7 +184,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -268,7 +275,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -333,6 +340,7 @@ def _update_instance(self, instance): properties.set_prop("agentName", AAZStrType, ".agent_name") properties.set_prop("copyMode", AAZStrType, ".copy_mode", typ_kwargs={"flags": {"required": True}}) properties.set_prop("description", AAZStrType, ".description") + properties.set_prop("jobType", AAZStrType, ".job_type") return _instance_value @@ -393,6 +401,9 @@ def _build_schema_job_definition_read(cls, _schema): flags={"required": True}, ) properties.description = AAZStrType() + properties.job_type = AAZStrType( + serialized_name="jobType", + ) properties.latest_job_run_name = AAZStrType( serialized_name="latestJobRunName", flags={"read_only": True}, @@ -420,6 +431,9 @@ def _build_schema_job_definition_read(cls, _schema): properties.source_subpath = AAZStrType( serialized_name="sourceSubpath", ) + properties.source_target_map = AAZObjectType( + serialized_name="sourceTargetMap", + ) properties.target_name = AAZStrType( serialized_name="targetName", flags={"required": True}, @@ -432,6 +446,51 @@ def _build_schema_job_definition_read(cls, _schema): serialized_name="targetSubpath", ) + source_target_map = _schema_job_definition_read.properties.source_target_map + source_target_map.value = AAZListType( + flags={"read_only": True}, + ) + + value = _schema_job_definition_read.properties.source_target_map.value + value.Element = AAZObjectType() + + _element = _schema_job_definition_read.properties.source_target_map.value.Element + _element.source_endpoint = AAZObjectType( + serialized_name="sourceEndpoint", + flags={"required": True}, + ) + _element.target_endpoint = AAZObjectType( + serialized_name="targetEndpoint", + flags={"required": True}, + ) + + source_endpoint = _schema_job_definition_read.properties.source_target_map.value.Element.source_endpoint + source_endpoint.properties = AAZObjectType() + + properties = _schema_job_definition_read.properties.source_target_map.value.Element.source_endpoint.properties + properties.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + ) + properties.name = AAZStrType() + properties.source_endpoint_resource_id = AAZStrType( + serialized_name="sourceEndpointResourceId", + ) + + target_endpoint = _schema_job_definition_read.properties.source_target_map.value.Element.target_endpoint + target_endpoint.properties = AAZObjectType() + + properties = _schema_job_definition_read.properties.source_target_map.value.Element.target_endpoint.properties + properties.azure_storage_account_resource_id = AAZStrType( + serialized_name="azureStorageAccountResourceId", + ) + properties.azure_storage_blob_container_name = AAZStrType( + serialized_name="azureStorageBlobContainerName", + ) + properties.name = AAZStrType() + properties.target_endpoint_resource_id = AAZStrType( + serialized_name="targetEndpointResourceId", + ) + system_data = _schema_job_definition_read.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_wait.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_wait.py index fbf0d0e9d27..82be3d7388b 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_wait.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_definition/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}", "2025-07-01"], ] } @@ -136,7 +136,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -199,6 +199,9 @@ def _build_schema_on_200(cls): flags={"required": True}, ) properties.description = AAZStrType() + properties.job_type = AAZStrType( + serialized_name="jobType", + ) properties.latest_job_run_name = AAZStrType( serialized_name="latestJobRunName", flags={"read_only": True}, @@ -226,6 +229,9 @@ def _build_schema_on_200(cls): properties.source_subpath = AAZStrType( serialized_name="sourceSubpath", ) + properties.source_target_map = AAZObjectType( + serialized_name="sourceTargetMap", + ) properties.target_name = AAZStrType( serialized_name="targetName", flags={"required": True}, @@ -238,6 +244,51 @@ def _build_schema_on_200(cls): serialized_name="targetSubpath", ) + source_target_map = cls._schema_on_200.properties.source_target_map + source_target_map.value = AAZListType( + flags={"read_only": True}, + ) + + value = cls._schema_on_200.properties.source_target_map.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.source_target_map.value.Element + _element.source_endpoint = AAZObjectType( + serialized_name="sourceEndpoint", + flags={"required": True}, + ) + _element.target_endpoint = AAZObjectType( + serialized_name="targetEndpoint", + flags={"required": True}, + ) + + source_endpoint = cls._schema_on_200.properties.source_target_map.value.Element.source_endpoint + source_endpoint.properties = AAZObjectType() + + properties = cls._schema_on_200.properties.source_target_map.value.Element.source_endpoint.properties + properties.aws_s3_bucket_id = AAZStrType( + serialized_name="awsS3BucketId", + ) + properties.name = AAZStrType() + properties.source_endpoint_resource_id = AAZStrType( + serialized_name="sourceEndpointResourceId", + ) + + target_endpoint = cls._schema_on_200.properties.source_target_map.value.Element.target_endpoint + target_endpoint.properties = AAZObjectType() + + properties = cls._schema_on_200.properties.source_target_map.value.Element.target_endpoint.properties + properties.azure_storage_account_resource_id = AAZStrType( + serialized_name="azureStorageAccountResourceId", + ) + properties.azure_storage_blob_container_name = AAZStrType( + serialized_name="azureStorageBlobContainerName", + ) + properties.name = AAZStrType() + properties.target_endpoint_resource_id = AAZStrType( + serialized_name="targetEndpointResourceId", + ) + system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_run/_list.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_run/_list.py index 755f93e9604..132d152769d 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_run/_list.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_run/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}/jobruns", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}/jobruns", "2025-07-01"], ] } @@ -139,7 +139,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -174,7 +174,6 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) _schema_on_200.value = AAZListType( flags={"read_only": True}, @@ -269,7 +268,7 @@ def _build_schema_on_200(cls): serialized_name="itemsUnsupported", flags={"read_only": True}, ) - properties.job_definition_properties = AAZObjectType( + properties.job_definition_properties = AAZAnyType( serialized_name="jobDefinitionProperties", flags={"read_only": True}, ) @@ -289,7 +288,7 @@ def _build_schema_on_200(cls): serialized_name="sourceName", flags={"read_only": True}, ) - properties.source_properties = AAZObjectType( + properties.source_properties = AAZAnyType( serialized_name="sourceProperties", flags={"read_only": True}, ) @@ -304,7 +303,7 @@ def _build_schema_on_200(cls): serialized_name="targetName", flags={"read_only": True}, ) - properties.target_properties = AAZObjectType( + properties.target_properties = AAZAnyType( serialized_name="targetProperties", flags={"read_only": True}, ) diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_run/_show.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_run/_show.py index 8390bf692eb..ba4b5a02032 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_run/_show.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/job_run/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}/jobruns/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}/jobdefinitions/{}/jobruns/{}", "2025-07-01"], ] } @@ -150,7 +150,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -268,7 +268,7 @@ def _build_schema_on_200(cls): serialized_name="itemsUnsupported", flags={"read_only": True}, ) - properties.job_definition_properties = AAZObjectType( + properties.job_definition_properties = AAZAnyType( serialized_name="jobDefinitionProperties", flags={"read_only": True}, ) @@ -288,7 +288,7 @@ def _build_schema_on_200(cls): serialized_name="sourceName", flags={"read_only": True}, ) - properties.source_properties = AAZObjectType( + properties.source_properties = AAZAnyType( serialized_name="sourceProperties", flags={"read_only": True}, ) @@ -303,7 +303,7 @@ def _build_schema_on_200(cls): serialized_name="targetName", flags={"read_only": True}, ) - properties.target_properties = AAZObjectType( + properties.target_properties = AAZAnyType( serialized_name="targetProperties", flags={"read_only": True}, ) diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_create.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_create.py index 3b39d9ee2c0..f0ed0002299 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_create.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2025-07-01"], ] } @@ -137,7 +137,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_delete.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_delete.py index 9b23d2c3955..0371202d94c 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_delete.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2025-07-01"], ] } @@ -153,7 +153,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_list.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_list.py index d7e00a521eb..c9a106ae31a 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_list.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects", "2025-07-01"], ] } @@ -121,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -156,7 +156,6 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) _schema_on_200.value = AAZListType( flags={"read_only": True}, diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_show.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_show.py index a4611a44d59..c070f8dbbe5 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_show.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2025-07-01"], ] } @@ -130,7 +130,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_update.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_update.py index 10b93051631..d2812b75cfa 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_update.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2024-07-01", + "version": "2025-07-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2025-07-01"], ] } @@ -155,7 +155,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } @@ -242,7 +242,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_wait.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_wait.py index 0958325a214..c4b6ab4a888 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_wait.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/project/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2024-07-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.storagemover/storagemovers/{}/projects/{}", "2025-07-01"], ] } @@ -126,7 +126,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-07-01", + "api-version", "2025-07-01", required=True, ), } diff --git a/src/storage-mover/azext_storage_mover/azext_metadata.json b/src/storage-mover/azext_storage_mover/azext_metadata.json index 34f7fac3fed..06012c7c942 100644 --- a/src/storage-mover/azext_storage_mover/azext_metadata.json +++ b/src/storage-mover/azext_storage_mover/azext_metadata.json @@ -1,3 +1,3 @@ { - "azext.minCliCoreVersion": "2.57.0" + "azext.minCliCoreVersion": "2.75.0" } \ No newline at end of file From ed5767ba2b4bb95385c57b35f6f3ee63b3c53949 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Thu, 4 Sep 2025 20:03:11 +0530 Subject: [PATCH 02/20] Custom Commands for Endpoint Create/Update for NFS File Share and Multi Cloud Connector --- .../azext_storage_mover/_help.py | 42 +++++++++++++ .../azext_storage_mover/commands.py | 8 +++ .../azext_storage_mover/custom.py | 60 +++++++++++++++++++ 3 files changed, 110 insertions(+) diff --git a/src/storage-mover/azext_storage_mover/_help.py b/src/storage-mover/azext_storage_mover/_help.py index 58053cbf4db..94a316542bb 100644 --- a/src/storage-mover/azext_storage_mover/_help.py +++ b/src/storage-mover/azext_storage_mover/_help.py @@ -32,6 +32,17 @@ --description endpointFileShareDesc """ +helps['storage-mover endpoint create-for-storage-nfs-file-share'] = """ +type: command +short-summary: Creates an Endpoint resource for storage nfs file share. +examples: + - name: endpoint create-for-storage-nfs-file-share + text: > + az storage-mover endpoint create-for-storage-nfs-file-share -g "rg" --storage-mover-name "mover_name" + -n "endpoint_nfs_file_share" --file-share-name "file_share_name" --storage-account-id "account_id" + --description endpointNfsFileShareDesc +""" + helps['storage-mover endpoint create-for-nfs'] = """ type: command short-summary: Creates an Endpoint resource for nfs. @@ -53,6 +64,17 @@ --password-uri Password!23 --host "vm_ip" """ +helps['storage-mover endpoint create-for-multi-cloud-connector'] = """ +type: command +short-summary: Creates an Endpoint resource for multi cloud connector. +examples: + - name: endpoint create-for-multi-cloud-connector + text: > + az storage-mover endpoint create-for-multi-cloud-connector -g "rg" --storage-mover-name "mover_name" + -n "endpoint_multi_cloud_connector" --multi-cloud-connector-id "connector_id" --aws-s3-bucket-id "bucket_id" + --description endpointMultiCloudConnectorDesc +""" + helps['storage-mover endpoint update-for-storage-container'] = """ type: command short-summary: Updates an Endpoint resource for storage blob container. @@ -73,6 +95,16 @@ -n "endpoint_file_share" --description endpointFileShareDescUpdate """ +helps['storage-mover endpoint update-for-storage-nfs-file-share'] = """ +type: command +short-summary: Updates an Endpoint resource for storage nfs file share. +examples: + - name: endpoint update-for-storage-nfs-file-share + text: > + az storage-mover endpoint update-for-storage-nfs-file-share -g "rg" --storage-mover-name "mover_name" + -n "endpoint_nfs_file_share" --description endpointNfsFileShareDescUpdate +""" + helps['storage-mover endpoint update-for-nfs'] = """ type: command short-summary: Updates an Endpoint resource for nfs. @@ -92,3 +124,13 @@ az storage-mover endpoint update-for-smb -g "rg" --storage-mover-name "mover_name" -n "endpoint_smb" --description endpointSmbDescUpdate """ + +helps['storage-mover endpoint update-for-multi-cloud-connector'] = """ +type: command +short-summary: Updates an Endpoint resource for multi cloud connector. +examples: + - name: endpoint update-for-multi-cloud-connector + text: > + az storage-mover endpoint update-for-multi-cloud-connector -g "rg" --storage-mover-name "mover_name" + -n "endpoint_multi_cloud_connector" --description endpointMultiCloudConnectorDescUpdate +""" diff --git a/src/storage-mover/azext_storage_mover/commands.py b/src/storage-mover/azext_storage_mover/commands.py index c30870cc869..9f6d9db0c43 100644 --- a/src/storage-mover/azext_storage_mover/commands.py +++ b/src/storage-mover/azext_storage_mover/commands.py @@ -17,10 +17,18 @@ def load_command_table(self, _): # pylint: disable=unused-argument g.custom_command('create-for-storage-container', 'endpoint_create_for_storage_container') g.custom_command('create-for-storage-smb-file-share', 'endpoint_create_for_storage_smb_file_share') + g.custom_command('create-for-storage-nfs-file-share', + 'endpoint_create_for_storage_nfs_file_share') g.custom_command('create-for-nfs', 'endpoint_create_for_nfs') g.custom_command('create-for-smb', 'endpoint_create_for_smb') + g.custom_command('create-for-multi-cloud-connector', + 'endpoint_create_for_multi_cloud_connector') g.custom_command('update-for-storage-container', 'endpoint_update_for_storage_container') g.custom_command('update-for-storage-smb-file-share', 'endpoint_update_for_storage_smb_file_share') + g.custom_command('update-for-storage-nfs-file-share', + 'endpoint_update_for_storage_nfs_file_share') + g.custom_command('update-for-multi-cloud-connector', + 'endpoint_update_for_multi_cloud_connector') g.custom_command('update-for-nfs', 'endpoint_update_for_nfs') g.custom_command('update-for-smb', 'endpoint_update_for_smb') diff --git a/src/storage-mover/azext_storage_mover/custom.py b/src/storage-mover/azext_storage_mover/custom.py index d8a9032c111..e61373a390b 100644 --- a/src/storage-mover/azext_storage_mover/custom.py +++ b/src/storage-mover/azext_storage_mover/custom.py @@ -73,6 +73,66 @@ def endpoint_update_for_storage_smb_file_share(cmd, endpoint_name, resource_grou return Update_Endpoint(args) +def _get_args_for_endpoint_for_storage_nfs_file_share(endpoint_name, resource_group, storage_mover_name, + file_share_name=None, storage_account_resource_id=None, + description=None): + args = { + "endpoint_name": endpoint_name, "resource_group": resource_group, "storage_mover_name": storage_mover_name, + "description": description, + "azure_storage_nfs_file_share": { + "file_share_name": file_share_name, + "storage_account_resource_id": storage_account_resource_id, + } + } + return args + + +def endpoint_create_for_storage_nfs_file_share(cmd, endpoint_name, resource_group, storage_mover_name, + file_share_name, storage_account_resource_id, description=None): + Create_Endpoint = Create(cmd.loader) + args = _get_args_for_endpoint_for_storage_nfs_file_share(endpoint_name, resource_group, storage_mover_name, + file_share_name, storage_account_resource_id, description) + return Create_Endpoint(args) + + +def endpoint_update_for_storage_nfs_file_share(cmd, endpoint_name, resource_group, storage_mover_name, + description=None): + Update_Endpoint = Update(cmd.loader) + args = _get_args_for_endpoint_for_storage_nfs_file_share(endpoint_name, resource_group, storage_mover_name, + description=description) + return Update_Endpoint(args) + + +def _get_args_for_endpoint_for_multi_cloud_connector(endpoint_name, resource_group, storage_mover_name, + multi_cloud_connector_id=None, aws_s3_bucket_id=None, + description=None): + args = { + "endpoint_name": endpoint_name, "resource_group": resource_group, "storage_mover_name": storage_mover_name, + "description": description, + "azure_multi_cloud_connector": { + "multi_cloud_connector_id": multi_cloud_connector_id, + "aws_s3_bucket_id": aws_s3_bucket_id, + } + } + return args + + +def endpoint_create_for_multi_cloud_connector(cmd, endpoint_name, resource_group, storage_mover_name, + multi_cloud_connector_id, aws_s3_bucket_id, description=None): + Create_Endpoint = Create(cmd.loader) + args = _get_args_for_endpoint_for_multi_cloud_connector(endpoint_name, resource_group, storage_mover_name, + multi_cloud_connector_id, aws_s3_bucket_id, description) + return Create_Endpoint(args) + + +def endpoint_update_for_multi_cloud_connector(cmd, endpoint_name, resource_group, storage_mover_name, + description=None): + Update_Endpoint = Update(cmd.loader) + args = _get_args_for_endpoint_for_multi_cloud_connector(endpoint_name, resource_group, storage_mover_name, + description=description) + return Update_Endpoint(args) + + def _get_args_for_endpoint_for_nfs(endpoint_name, resource_group, storage_mover_name, export=None, host=None, nfs_version=None, description=None): args = { From 2406e60d9d6cba38c1a9f86a02db76f1de7be154 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Mon, 8 Sep 2025 16:39:18 +0530 Subject: [PATCH 03/20] Added param for nfs-file-share --- src/storage-mover/azext_storage_mover/_params.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/storage-mover/azext_storage_mover/_params.py b/src/storage-mover/azext_storage_mover/_params.py index f5105697558..338e2254cb7 100644 --- a/src/storage-mover/azext_storage_mover/_params.py +++ b/src/storage-mover/azext_storage_mover/_params.py @@ -40,6 +40,11 @@ def load_arguments(self, _): # pylint: disable=unused-argument c.argument('storage_account_resource_id', options_list=('--storage-account-id'), help='The Azure Resource ID of the storage account that is the target destination.') + with self.argument_context('storage-mover endpoint create-for-storage-nfs-file-share') as c: + c.argument('file_share_name', help='The name of the Azure Storage file share.') + c.argument('storage_account_resource_id', options_list=('--storage-account-id'), + help='The Azure Resource ID of the storage account that is the target destination.') + with self.argument_context('storage-mover endpoint create-for-smb') as c: c.argument('host', help='The host name or IP address of the server exporting the file system.') c.argument('share_name', help='The name of the SMB share being exported from the server.') From 2b8e053abce23576ff29e9ab34dcc302bee27a08 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Mon, 8 Sep 2025 16:39:45 +0530 Subject: [PATCH 04/20] Added test for nfs file share --- .../tests/latest/test_storage_mover.py | 49 ++++++++++++++++++- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py index 07b75c4ef9d..28521637e56 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py +++ b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py @@ -99,6 +99,9 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) '-otsv'.format(storage_account, resource_group)).output.strip(), "endpoint_container": self.create_random_name('endpoint_container', 32), "endpoint_file_share": self.create_random_name('endpoint_file_share', 32), + "endpoint_nfs_file_share": self.create_random_name('endpoint_nfs_file_share', 40), + "multi_cloud_connector": self.create_random_name('multi_cloud_connector', 40), + "endpoint_multi_cloud_connector": self.create_random_name('endpoint_multi_cloud_connector', 40), "endpoint_nfs": self.create_random_name('endpoint_nfs', 32), "endpoint_smb": self.create_random_name('endpoint_smb', 32), "vm_nfs_name": self.create_random_name('vm', 24), @@ -151,6 +154,47 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) checks=[JMESPathCheck('name', self.kwargs.get('endpoint_file_share', '')), JMESPathCheck('properties.description', "endpointFileShareDescUpdate")]) + self.cmd('az storage-mover endpoint create-for-storage-nfs-file-share -g {rg} ' + '--storage-mover-name {mover_name} ' + '-n {endpoint_nfs_file_share} --file-share-name {file_share_name} --storage-account-id {account_id} ' + '--description endpointNFSFileShareDesc') + self.cmd('az storage-mover endpoint show -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs_file_share}', + checks=[JMESPathCheck('name', self.kwargs.get('endpoint_nfs_file_share', '')), + JMESPathCheck('properties.fileShareName', self.kwargs.get('file_share_name', '')), + JMESPathCheck('properties.endpointType', "AzureStorageNfsFileShare"), + JMESPathCheck('properties.storageAccountResourceId', self.kwargs.get('account_id', '')), + JMESPathCheck('properties.description', "endpointNFSFileShareDesc"), + ]) + + # update for storage nfs file share + self.cmd('az storage-mover endpoint update-for-storage-nfs-file-share -g {rg} ' + '--storage-mover-name {mover_name} ' + '-n {endpoint_nfs_file_share} --description endpointNFSFileShareDescUpdate', + checks=[JMESPathCheck('name', self.kwargs.get('endpoint_nfs_file_share', '')), + JMESPathCheck('properties.description', "endpointNFSFileShareDescUpdate")]) + + # self.cmd('az arc-multicloud public-cloud-connector create --resource-group {rg} ' + # '--name {multi_cloud_connector} --aws-cloud-profile "{accountId:536697237310,isOrganizationalAccount:False}" ' + # '--host-type AWS --location eastus') + # self.cmd('az storage-mover endpoint create-for-multi-cloud-connector -g {rg} ' + # '--storage-mover-name {mover_name} ' + # '-n {endpoint_multi_cloud_connector} --file-share-name {file_share_name} --storage-account-id {account_id} ' + # '--description endpointMultiCloudConnectorDesc') + # self.cmd('az storage-mover endpoint show -g {rg} --storage-mover-name {mover_name} -n {endpoint_multi_cloud_connector}', + # checks=[JMESPathCheck('name', self.kwargs.get('endpoint_multi_cloud_connector', '')), + # JMESPathCheck('properties.fileShareName', self.kwargs.get('file_share_name', '')), + # JMESPathCheck('properties.endpointType', "AzureStorageNfsFileShare"), + # JMESPathCheck('properties.storageAccountResourceId', self.kwargs.get('account_id', '')), + # JMESPathCheck('properties.description', "endpointNFSFileShareDesc"), + # ]) + + # # update for storage nfs file share + # self.cmd('az storage-mover endpoint update-for-storage-nfs-file-share -g {rg} ' + # '--storage-mover-name {mover_name} ' + # '-n {endpoint_nfs_file_share} --description endpointNFSFileShareDescUpdate', + # checks=[JMESPathCheck('name', self.kwargs.get('endpoint_nfs_file_share', '')), + # JMESPathCheck('properties.description', "endpointNFSFileShareDescUpdate")]) + # create for nfs mount vm_ip = self.cmd('az vm create -n {vm_nfs_name} -g {rg} --image Ubuntu2204 --size Standard_D4s_v3 --nsg-rule ' 'NONE --admin-username ubuntuuser --generate-ssh-keys').get_output_in_json()["publicIpAddress"] @@ -195,14 +239,15 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) '-n {endpoint_smb} --username-uri "" --password-uri "" --description endpointSmbDescUpdate', checks=[JMESPathCheck('name', self.kwargs.get('endpoint_smb', '')), JMESPathCheck('properties.description', "endpointSmbDescUpdate"), + # JMESPathCheck('properties.credentials.type', "AzureKeyVaultSmb"), JMESPathCheck('properties.credentials.passwordUri', None), JMESPathCheck('properties.credentials.usernameUri', None)]) self.cmd('az storage-mover endpoint list -g {rg} --storage-mover-name {mover_name}', - checks=[JMESPathCheck('length(@)', 4)]) + checks=[JMESPathCheck('length(@)', 5)]) self.cmd('az storage-mover endpoint delete -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs} -y') self.cmd('az storage-mover endpoint list -g {rg} --storage-mover-name {mover_name}', - checks=[JMESPathCheck('length(@)', 3)]) + checks=[JMESPathCheck('length(@)', 4)]) @record_only() # need to manually register agent, first create the rg and the storagemover From 97ad5382ae39a297da8609de4066dd61e5315515 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Mon, 8 Sep 2025 22:51:08 +0530 Subject: [PATCH 05/20] NFS Tests Working --- .../latest/storage_mover/endpoint/_update.py | 18 + ...test_storage_mover_endpoint_scenarios.yaml | 7200 +++++++++++------ .../tests/latest/test_storage_mover.py | 1 - 3 files changed, 4723 insertions(+), 2496 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_update.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_update.py index 39d54b4e03a..43225ad7293 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_update.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/_update.py @@ -61,6 +61,12 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "Properties" _args_schema = cls._args_schema + _args_schema.storage_blob_container = AAZObjectArg( + options=["--storage-blob-container"], + arg_group="Properties", + help="Storage Blob Container Object", + ) + _args_schema.azure_multi_cloud_connector = AAZObjectArg( options=["--azure-multi-cloud-connector"], arg_group="Properties", @@ -76,6 +82,12 @@ def _build_arguments_schema(cls, *args, **kwargs): nullable=True, ) + storage_blob_container = cls._args_schema.storage_blob_container + storage_blob_container.storage_account_resource_id = AAZResourceIdArg( + options=["storage-account-resource-id"], + help="The Azure Resource ID of the storage account that is the target destination.", + ) + azure_multi_cloud_connector = cls._args_schema.azure_multi_cloud_connector azure_multi_cloud_connector.aws_s3_bucket_id = AAZResourceIdArg( options=["aws-s3-bucket-id"], @@ -335,9 +347,14 @@ def _update_instance(self, instance): properties = _builder.get(".properties") if properties is not None: properties.set_prop("description", AAZStrType, ".description") + properties.discriminate_by("endpointType", "AzureStorageBlobContainer") properties.discriminate_by("endpointType", "AzureMultiCloudConnector") properties.discriminate_by("endpointType", "SmbMount") + disc_azure_storage_blob_container = _builder.get(".properties{endpointType:AzureStorageBlobContainer}") + if disc_azure_storage_blob_container is not None: + disc_azure_storage_blob_container.set_prop("storageAccountResourceId", AAZStrType, ".storage_blob_container.storage_account_resource_id", typ_kwargs={"flags": {"required": True}}) + disc_azure_multi_cloud_connector = _builder.get(".properties{endpointType:AzureMultiCloudConnector}") if disc_azure_multi_cloud_connector is not None: disc_azure_multi_cloud_connector.set_prop("awsS3BucketId", AAZStrType, ".azure_multi_cloud_connector.aws_s3_bucket_id", typ_kwargs={"flags": {"required": True}}) @@ -349,6 +366,7 @@ def _update_instance(self, instance): credentials = _builder.get(".properties{endpointType:SmbMount}.credentials") if credentials is not None: credentials.set_prop("passwordUri", AAZStrType, ".password_uri") + credentials.set_const("type", "AzureKeyVaultSmb", AAZStrType, ".", typ_kwargs={"flags": {"required": True}}) credentials.set_prop("usernameUri", AAZStrType, ".username_uri") return _instance_value diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml index 3225d24ba3e..9ad6834e7eb 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml @@ -15,12 +15,12 @@ interactions: ParameterSetName: - -n -g --query -o User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2023-05-01&$expand=kerb + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2024-01-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2024-07-02T09:22:48.9207673Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-07-02T09:22:48.9207673Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2025-09-08T17:12:23.6253370Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-09-08T17:12:23.6253370Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -29,21 +29,25 @@ interactions: content-type: - application/json date: - - Tue, 02 Jul 2024 09:23:14 GMT + - Mon, 08 Sep 2025 17:12:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/3e9f4097-bbbf-4d4b-8ee7-1fb11f8f8824 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/805d0c1b-e3c1-4f14-bb5b-2fa1bf0ff6a5 x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: F2EF662689D8456EB5A04DA711E28EFC Ref B: PNQ231110909040 Ref C: 2025-09-08T17:12:44Z' status: code: 200 message: OK @@ -61,33 +65,35 @@ interactions: ParameterSetName: - -n -g --query -o User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2023-05-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2024-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-07-02T09:22:48.9207673Z","key2":"2024-07-02T09:22:48.9207673Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-07-02T09:22:50.3114691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-07-02T09:22:50.3114691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-07-02T09:22:48.7957757Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"keyCreationTime":{"key1":"2025-09-08T17:12:23.6253370Z","key2":"2025-09-08T17:12:23.6253370Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-09-08T17:12:23.6409693Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-09-08T17:12:23.6409693Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-09-08T17:12:23.4847125Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1321' + - '1353' content-type: - application/json date: - - Tue, 02 Jul 2024 09:23:15 GMT + - Mon, 08 Sep 2025 17:12:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 78A51805A4E24DAB9F92411A8340C0A3 Ref B: PNQ231110909025 Ref C: 2025-09-08T17:12:46Z' status: code: 200 message: OK @@ -110,41 +116,45 @@ interactions: ParameterSetName: - -g -n -l --tags --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003","name":"storage-mover000003","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:19.2132543Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:19.2132543Z"},"properties":{"description":"MoverDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003","name":"storage-mover000003","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1","Mover":"Dev","team":"Discovery"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:49.4673845Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:49.4673845Z"},"properties":{"description":"MoverDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '597' + - '614' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:20 GMT + - Mon, 08 Sep 2025 17:12:49 GMT etag: - - '"0900e939-0000-3400-0000-6683c7080000"' + - '"3300584a-0000-3300-0000-68bf0e910000"' expires: - '-1' mise-correlation-id: - - 9b467a2c-d3cc-4886-8822-1d46d49e63a5 + - 17c473cd-ef9b-4488-a512-f6c6e788c574 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/fa309541-103c-4911-b66a-b2ae8e5cfc28 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/91c90872-fbf3-4207-87bd-5828264f28ca x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E71D8B88C5DD465089110D6592B44745 Ref B: PNQ231110906042 Ref C: 2025-09-08T17:12:47Z' status: code: 200 message: OK @@ -164,9 +174,9 @@ interactions: ParameterSetName: - -n --account-name --account-key User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-storage-blob/12.16.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) x-ms-date: - - Tue, 02 Jul 2024 09:23:21 GMT + - Mon, 08 Sep 2025 17:12:47 GMT x-ms-version: - '2022-11-02' method: PUT @@ -178,11 +188,11 @@ interactions: content-length: - '0' date: - - Tue, 02 Jul 2024 09:23:21 GMT + - Mon, 08 Sep 2025 17:12:51 GMT etag: - - '"0x8DC9A789E464CA6"' + - '"0x8DDEEFAF18662C0"' last-modified: - - Tue, 02 Jul 2024 09:23:22 GMT + - Mon, 08 Sep 2025 17:12:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -209,41 +219,45 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --container-name --storage-account-id --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:52.7185008Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '852' + - '836' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:24 GMT + - Mon, 08 Sep 2025 17:12:52 GMT etag: - - '"aa00596e-0000-3400-0000-6683c70d0000"' + - '"79008ec9-0000-3300-0000-68bf0e950000"' expires: - '-1' mise-correlation-id: - - 554b872c-55f7-4abf-b861-542ad5b28698 + - 8365ed3e-0ef7-49e3-bfaa-4e9c7eeb3616 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/9bc8cd3c-ac4a-4504-87c1-785924659a17 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/17a3cfbf-781c-4e78-84aa-f286f7b700eb x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8E81568FB4874217866634885984DC45 Ref B: PNQ231110906034 Ref C: 2025-09-08T17:12:52Z' status: code: 200 message: OK @@ -261,37 +275,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:52.7185008Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '852' + - '836' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:27 GMT + - Mon, 08 Sep 2025 17:12:53 GMT etag: - - '"aa00596e-0000-3400-0000-6683c70d0000"' + - '"79008ec9-0000-3300-0000-68bf0e950000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/a6cdcaaf-caaf-4f27-a2dd-f15a1098f884 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/2acd6176-9164-4af5-b901-c40a59a8af52 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 44207A6FA8AC410A8A15E22C079446E9 Ref B: PNQ231110909052 Ref C: 2025-09-08T17:12:53Z' status: code: 200 message: OK @@ -309,37 +327,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:52.7185008Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '852' + - '836' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:29 GMT + - Mon, 08 Sep 2025 17:12:55 GMT etag: - - '"aa00596e-0000-3400-0000-6683c70d0000"' + - '"79008ec9-0000-3300-0000-68bf0e950000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/555eba5e-73be-494b-8beb-5ca76227676a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/e182cba8-ba7a-46e9-be44-a7bada009d48 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 46ABC36BC8584AB2AB539EB9FC6C25CC Ref B: PNQ231110906031 Ref C: 2025-09-08T17:12:54Z' status: code: 200 message: OK @@ -362,41 +384,45 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:56.4528926Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '858' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:30 GMT + - Mon, 08 Sep 2025 17:12:56 GMT etag: - - '"aa00626e-0000-3400-0000-6683c7120000"' + - '"7900a2c9-0000-3300-0000-68bf0e980000"' expires: - '-1' mise-correlation-id: - - 5ddec9cd-ee83-427a-9835-2bd527a74612 + - 9aa37b16-b434-472d-9564-c56f20ebd7b5 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/5509b4f6-1385-4115-bfba-1247efbdfe10 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/23e6c091-2d40-492e-bc69-e77e2db6b2de x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 473121B7171B44C3A7B2D5B7CBA0F458 Ref B: PNQ231110907060 Ref C: 2025-09-08T17:12:55Z' status: code: 200 message: OK @@ -416,14 +442,13 @@ interactions: ParameterSetName: - -n --account-name --account-key User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-storage-file-share/12.12.0b1 Python/3.9.13 - (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-storage-file-share/12.21.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) x-ms-date: - - Tue, 02 Jul 2024 09:23:30 GMT + - Mon, 08 Sep 2025 17:12:53 GMT x-ms-version: - - '2022-11-02' + - '2025-05-05' method: PUT - uri: https://clitest000002.file.core.windows.net/fileshare000011?restype=share + uri: https://clitest000002.file.core.windows.net/fileshare000014?restype=share response: body: string: '' @@ -431,21 +456,21 @@ interactions: content-length: - '0' date: - - Tue, 02 Jul 2024 09:23:31 GMT + - Mon, 08 Sep 2025 17:12:57 GMT etag: - - '"0x8DC9A78A420F7FD"' + - '"0x8DDEEFAF56631FF"' last-modified: - - Tue, 02 Jul 2024 09:23:32 GMT + - Mon, 08 Sep 2025 17:12:58 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2022-11-02' + - '2025-05-05' status: code: 201 message: Created - request: body: '{"properties": {"description": "endpointFileShareDesc", "endpointType": - "AzureStorageSmbFileShare", "fileShareName": "fileshare000011", "storageAccountResourceId": + "AzureStorageSmbFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' headers: Accept: @@ -463,41 +488,45 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --file-share-name --storage-account-id --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:58.8748682Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '858' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:34 GMT + - Mon, 08 Sep 2025 17:12:58 GMT etag: - - '"aa00f06e-0000-3400-0000-6683c7160000"' + - '"7900b3c9-0000-3300-0000-68bf0e9b0000"' expires: - '-1' mise-correlation-id: - - b2663fbc-3de6-4fb5-bf8f-4c4e300ec494 + - b4c5fe0a-1c71-4589-a83c-227753ed2ee7 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/f8941e34-7f24-4043-8647-966076af064f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/e940dece-9d72-4496-b540-9c3dda47c386 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '798' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 509A2C993FFA4F1598B65F9F905C9D64 Ref B: PNQ231110909034 Ref C: 2025-09-08T17:12:58Z' status: code: 200 message: OK @@ -515,37 +544,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:58.8748682Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '858' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:36 GMT + - Mon, 08 Sep 2025 17:12:59 GMT etag: - - '"aa00f06e-0000-3400-0000-6683c7160000"' + - '"7900b3c9-0000-3300-0000-68bf0e9b0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/95870210-ba88-49b2-ac10-ba8312ee21d5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/466ce187-b2b9-4471-a93b-7dfad8408e03 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 45D459AE4BB14AD2A495187311080AFF Ref B: PNQ231110906052 Ref C: 2025-09-08T17:12:59Z' status: code: 200 message: OK @@ -563,43 +596,47 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:58.8748682Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '858' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:38 GMT + - Mon, 08 Sep 2025 17:13:00 GMT etag: - - '"aa00f06e-0000-3400-0000-6683c7160000"' + - '"7900b3c9-0000-3300-0000-68bf0e9b0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/8f0914d8-f9d2-4766-b048-fcfa96da25be + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/934baff1-780d-4384-aa3c-12c515151d63 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9EAD09B165144D27A5D13246225D80F7 Ref B: PNQ231110909036 Ref C: 2025-09-08T17:13:00Z' status: code: 200 message: OK - request: body: '{"properties": {"description": "endpointFileShareDescUpdate", "endpointType": - "AzureStorageSmbFileShare", "fileShareName": "fileshare000011", "storageAccountResourceId": + "AzureStorageSmbFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' headers: Accept: @@ -617,41 +654,273 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:02.0192748Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '848' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:02 GMT + etag: + - '"7900ccc9-0000-3300-0000-68bf0e9e0000"' + expires: + - '-1' + mise-correlation-id: + - 84279522-6fcd-4a0e-a037-ea77a3e44a37 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/d5af5840-6b42-4f42-91cd-823ce0dde134 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3B127907CDFA4A6F86A96790E7563B09 Ref B: PNQ231110908062 Ref C: 2025-09-08T17:13:00Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"description": "endpointNFSFileShareDesc", "endpointType": + "AzureStorageNfsFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint create-for-storage-nfs-file-share + Connection: + - keep-alive + Content-Length: + - '312' + Content-Type: + - application/json + ParameterSetName: + - -g --storage-mover-name -n --file-share-name --storage-account-id --description + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '853' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:03 GMT + etag: + - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' + expires: + - '-1' + mise-correlation-id: + - dd174ca8-0186-4593-b1df-8617104537fe + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/8cda0051-2980-4684-a482-7508da9c3ed5 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E2BCB33E44D34F08949F16D5F40BA1E5 Ref B: PNQ231110909042 Ref C: 2025-09-08T17:13:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint show + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '853' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:03 GMT + etag: + - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/5d6bcfcf-ac5c-41aa-948d-ce0e58f4d1b4 + x-ms-providerhub-traffic: + - 'True' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B4738D12CBEE49DEA82DFA39A7D508B3 Ref B: PNQ231110907031 Ref C: 2025-09-08T17:13:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint update-for-storage-nfs-file-share + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n --description + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '853' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:04 GMT + etag: + - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/23adba93-5eb3-4379-9d53-3ec335d53db5 + x-ms-providerhub-traffic: + - 'True' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 82A023A474584FC8AFD53FD5B5E7734B Ref B: PNQ231110909034 Ref C: 2025-09-08T17:13:04Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"description": "endpointNFSFileShareDescUpdate", "endpointType": + "AzureStorageNfsFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint update-for-storage-nfs-file-share + Connection: + - keep-alive + Content-Length: + - '318' + Content-Type: + - application/json + ParameterSetName: + - -g --storage-mover-name -n --description + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '864' + - '859' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:38 GMT + - Mon, 08 Sep 2025 17:13:05 GMT etag: - - '"aa005e6f-0000-3400-0000-6683c71b0000"' + - '"7900e7c9-0000-3300-0000-68bf0ea20000"' expires: - '-1' mise-correlation-id: - - 519521ab-1e50-4c21-badc-a77b63ff5675 + - 21fb7ae4-6472-4f52-8a98-563c9f31bae3 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/a58756b1-fc58-4c28-b93c-69c156bbb538 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/954d41d0-c312-4dce-8fe8-68c94a248ac2 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E02679798B10465DAFECC530B3BB7EE9 Ref B: PNQ231110909029 Ref C: 2025-09-08T17:13:05Z' status: code: 200 message: OK @@ -669,31 +938,35 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2024-07-02T09:22:38Z","module":"storage-mover","DateCreated":"2024-07-02T09:22:44Z","Creator":"zhiyihuang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2025-09-08T17:12:10Z","module":"storage-mover"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '461' + - '387' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:42 GMT + - Mon, 08 Sep 2025 17:13:08 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1843430FB19E45BB833F6F0E4BDD91BB Ref B: PNQ231110909025 Ref C: 2025-09-08T17:13:08Z' status: code: 200 message: OK @@ -707,9 +980,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.0 + - python-requests/2.32.4 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + 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 @@ -755,9 +1028,6 @@ interactions: \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: @@ -769,7 +1039,7 @@ interactions: connection: - keep-alive content-length: - - '3615' + - '3384' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -777,35 +1047,35 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 02 Jul 2024 09:23:42 GMT + - Mon, 08 Sep 2025 17:13:09 GMT etag: - - W/"9fee27d398b0211e374a0f0e8e79c9b3a0342cfa43466b26b8548409639c8c17" + - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2" expires: - - Tue, 02 Jul 2024 09:28:42 GMT + - Mon, 08 Sep 2025 17:18:09 GMT source-age: - - '150' + - '0' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding,Origin + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: - - HIT + - MISS x-cache-hits: - - '1' + - '0' x-content-type-options: - nosniff x-fastly-request-id: - - ab22472429ed6a10db3a2157ae33bdd7433c320f + - 5fd769967b5e75b63853c0505e2ef7a334d22e8a x-frame-options: - deny x-github-request-id: - - 581E:AA2A7:6885C0:7F60A9:66834B25 + - A29E:23FABD:2169F86:2798B64:68BF0EA5 x-served-by: - - cache-qpg120102-QPG + - cache-sin-wsss1830063-SIN x-timer: - - S1719912222.447869,VS0,VE1 + - S1757351589.372998,VS0,VE278 x-xss-protection: - 1; mode=block status: @@ -825,13 +1095,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n \ }\r\n]" headers: cache-control: @@ -841,24 +1111,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:43 GMT + - Mon, 08 Sep 2025 17:13:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/6a66e763-b4ad-4ed6-a91d-e248b35e6150 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/b9132662-0fa3-458f-9324-8179d8beb2cc x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 852AFCAAFCC44708A45FE2B0AC817097 Ref B: PNQ231110906034 Ref C: 2025-09-08T17:13:09Z' status: code: 200 message: OK @@ -876,9 +1147,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -893,33 +1164,36 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n - \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" headers: cache-control: - no-cache content-length: - - '1168' + - '1216' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:44 GMT + - Mon, 08 Sep 2025 17:13:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/faa3d188-70fa-4f28-8c39-7727b8a24c34 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/2b51f590-865f-482c-8aa6-fa3ab033cf15 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8166275DAE33438D8E02443F38518CAB Ref B: PNQ231110909034 Ref C: 2025-09-08T17:13:10Z' status: code: 200 message: OK @@ -937,9 +1211,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: string: '{"value":[]}' @@ -951,17 +1225,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:45 GMT + - Mon, 08 Sep 2025 17:13:10 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 85514DD3498B46E6AC684EF463009AA1 Ref B: PNQ231110907060 Ref C: 2025-09-08T17:13:10Z' status: code: 200 message: OK @@ -979,9 +1257,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n @@ -1872,6 +2150,9 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_E64bs_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96bs_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_E112ibs_v5\",\r\n \"numberOfCores\": 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n @@ -1896,6 +2177,9 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_E64bds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96bds_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_E112ibds_v5\",\r\n \"numberOfCores\": 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n @@ -1980,223 +2264,37 @@ interactions: \ {\r\n \"name\": \"Standard_B32s_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": + 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": + 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": + 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": + 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": @@ -2259,6 +2357,12 @@ interactions: 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_8_v2\",\r\n \"numberOfCores\": 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4194304,\r\n \"memoryInMB\": 7782400,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_9_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 8773632,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_10_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 9723904,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n @@ -2571,355 +2675,427 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_E112iads_v5\",\r\n \"numberOfCores\": 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2es_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC4es_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC8es_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC16es_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC32es_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48es_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC64es_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC96es_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC2eds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ads_v5\",\r\n \"numberOfCores\": + 48128,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4eds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ads_v5\",\r\n \"numberOfCores\": + 107520,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8eds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ads_v5\",\r\n \"numberOfCores\": + 232448,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16eds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ads_v5\",\r\n \"numberOfCores\": + 474112,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32eds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ads_v5\",\r\n \"numberOfCores\": + 957440,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48eds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64ads_v5\",\r\n \"numberOfCores\": + 1440768,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64eds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96ads_v5\",\r\n \"numberOfCores\": + 2890752,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96eds_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2as_v5\",\r\n \"numberOfCores\": + 2890752,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2es_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC4as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC4es_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC8es_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC16es_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC32es_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48es_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC64es_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ias_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC128es_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128ies_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2eds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_v5\",\r\n \"numberOfCores\": + 48128,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4eds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_v5\",\r\n \"numberOfCores\": + 107520,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8eds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_v5\",\r\n \"numberOfCores\": + 232448,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16eds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_v5\",\r\n \"numberOfCores\": + 474112,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32eds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_v5\",\r\n \"numberOfCores\": + 957440,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48eds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_v5\",\r\n \"numberOfCores\": + 1440768,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64eds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96iads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4as_cc_v5\",\r\n \"numberOfCores\": + 2890752,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128eds_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128ieds_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ads_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ads_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8as_cc_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D8ads_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16as_cc_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D16ads_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32as_cc_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D32ads_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48as_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D48ads_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64as_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D64ads_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96as_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D96ads_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ads_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ads_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ads_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ads_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4as_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E2ads_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ads_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8as_cc_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E8ads_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_cc_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E16ads_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E20ads_v6\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E32ads_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_cc_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48ads_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64ads_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_cc_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ads_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_cc_v5\",\r\n \"numberOfCores\": + 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_cc_v5\",\r\n \"numberOfCores\": + 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": + 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2es_v5\",\r\n \"numberOfCores\": + 5765120,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS1\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS4-4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS4-8\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS5-8\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS5-16\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2as_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D4as_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D8as_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D16as_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D32as_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D48as_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D64as_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D96as_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2eds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 48128,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4eds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 107520,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8eds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 232448,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16eds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 474112,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32eds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 957440,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48eds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1440768,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64eds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96eds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E2as_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC4es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E4as_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E8as_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E16as_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E20as_v6\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32as_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E48as_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64as_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128es_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128ies_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2eds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E96as_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2als_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 48128,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4als_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 107520,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8als_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 232448,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16als_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 474112,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32als_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 957440,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48als_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1440768,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64als_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128eds_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128ieds_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96als_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2alds_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D4alds_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D8alds_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D16alds_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D32alds_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + \ {\r\n \"name\": \"Standard_D48alds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64alds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D96alds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2as_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_F4as_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_F8as_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_F16as_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_F32as_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F48as_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F64as_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2als_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_F4als_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_F8als_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_F16als_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_F32als_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_F48als_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_F64als_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2ams_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_F4ams_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_F8ams_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_F16ams_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F32ams_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F48ams_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F64ams_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n \ {\r\n \"name\": \"Standard_DC16s_v3\",\r\n \"numberOfCores\": @@ -2976,177 +3152,1077 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_L80as_v3\",\r\n \"numberOfCores\": 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC2as_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC4as_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC8as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC16as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7340032,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14680064,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC32as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64s_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48as_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64as_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M128s_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M192is_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32dms_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2ads_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4ads_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8ads_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16ads_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32ads_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64dms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ds_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ds_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M192ids_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48ads_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64ads_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7340032,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14680064,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M8-2ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M8-4ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2as_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC4as_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC8as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16-4ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16-8ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC16as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32-8ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32-16ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC20as_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48as_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64as_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M192ims_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M128dms_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M192idms_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96ias_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2ads_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4ads_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 90112,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8ads_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV16as_v4\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16ads_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC20ads_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32ads_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 720896,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_ND96is_MI300X_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48ads_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64ads_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96ads_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_ND96isr_MI300X_v5\",\r\n \"numberOfCores\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96iads_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": 16\r\n - \ }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '148107' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Jul 2024 09:23:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4as_cc_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC8as_cc_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC16as_cc_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC32as_cc_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48as_cc_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64as_cc_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96as_cc_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4ads_cc_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8ads_cc_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16ads_cc_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32ads_cc_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48ads_cc_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64ads_cc_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96ads_cc_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4as_cc_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC8as_cc_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC16as_cc_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC20as_cc_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32as_cc_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48as_cc_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64as_cc_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96as_cc_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4ads_cc_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8ads_cc_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16ads_cc_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC20ads_cc_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ls_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ls_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ls_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ls_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ls_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48ls_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64ls_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96ls_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D128ls_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2lds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4lds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8lds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16lds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32lds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48lds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64lds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96lds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D128lds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2s_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4s_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8s_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16s_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32s_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48s_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96s_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D128s_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96ds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D128ds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4-2s_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4s_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-2s_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-4s_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8s_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16-4s_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20s_v6\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48s_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96s_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128-32s_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128-64s_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128s_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4-2ds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-2ds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-4ds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16-4ds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16ds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ds_v6\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48ds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64ds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128-32ds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128-64ds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128ds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX2ms_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 43008,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX4-2ms_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX4ms_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX8-2ms_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX8-4ms_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX8ms_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX12-6ms_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX12ms_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16-4ms_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16-8ms_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16ms_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24-6ms_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24-12ms_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24ms_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32-8ms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32-16ms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32ms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48-12ms_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48-24ms_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48ms_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64-16ms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64-32ms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64ms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX2mds_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 43008,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX4-2mds_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX4mds_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX8-2mds_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX8-4mds_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX8mds_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX12-6mds_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX12mds_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16-4mds_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16-8mds_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16mds_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24-6mds_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24-12mds_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24mds_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32-8mds_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32-16mds_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32mds_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48-12mds_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48-24mds_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48mds_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64-16mds_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64-32mds_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64mds_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E192is_v6\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E192ids_v6\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L2s_v4\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_L4s_v4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_L8s_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_L16s_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32s_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L48s_v4\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L64s_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L80s_v4\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L96s_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96-24ms_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96-48ms_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96ms_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96-24mds_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96-48mds_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96mds_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": 64,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7340032,\r\n + \ \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": 128,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14680064,\r\n + \ \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": 32,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1048576,\r\n + \ \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": 32,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1048576,\r\n + \ \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": 64,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2097152,\r\n + \ \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2097152,\r\n + \ \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4194304,\r\n + \ \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64ms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64s_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M128s_v2\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M192is_v2\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32dms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64dms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ds_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ds_v2\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M192ids_v2\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7340032,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14680064,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M8-2ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_M8-4ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_M16-4ms\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_M16-8ms\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32-8ms\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32-16ms\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms_v2\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M192ims_v2\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M128dms_v2\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M192idms_v2\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 90112,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV16as_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 720896,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pls_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4pls_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8pls_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16pls_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32pls_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48pls_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64pls_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96pls_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2plds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4plds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8plds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16plds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32plds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48plds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64plds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96plds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ps_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ps_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ps_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ps_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ps_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ps_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ps_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4pds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8pds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16pds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32pds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48pds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64pds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ps_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ps_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ps_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16ps_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ps_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2pds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4pds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8pds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16pds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32pds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '202794' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:11 GMT + expires: + - '-1' + pragma: + - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/db5ebdf7-fd25-4c5e-bf3f-d3c0a0581f1b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/0b50df78-256e-4a43-9077-7ab5bc9123bd x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetSubscriptionInfoSubscriptionMaximum;359 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: DA9017A143144D3A80A77170CA95688C Ref B: PNQ231110906040 Ref C: 2025-09-08T17:13:11Z' status: code: 200 message: '' @@ -3160,9 +4236,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.0 + - python-requests/2.32.4 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + 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 @@ -3208,9 +4284,6 @@ interactions: \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: @@ -3222,7 +4295,7 @@ interactions: connection: - keep-alive content-length: - - '3615' + - '3384' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -3230,17 +4303,17 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 02 Jul 2024 09:23:49 GMT + - Mon, 08 Sep 2025 17:13:12 GMT etag: - - W/"9fee27d398b0211e374a0f0e8e79c9b3a0342cfa43466b26b8548409639c8c17" + - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2" expires: - - Tue, 02 Jul 2024 09:28:49 GMT + - Mon, 08 Sep 2025 17:18:12 GMT source-age: - - '157' + - '2' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding,Origin + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: @@ -3250,15 +4323,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 756f8e672252aa5b4ffc20c5a5d0a14fea13daf4 + - 2395309eeaee2bc797cf53515678b63c3bc20994 x-frame-options: - deny x-github-request-id: - - 581E:AA2A7:6885C0:7F60A9:66834B25 + - A29E:23FABD:2169F86:2798B64:68BF0EA5 x-served-by: - - cache-qpg1248-QPG + - cache-sin-wsss1830087-SIN x-timer: - - S1719912229.281676,VS0,VE1 + - S1757351592.100335,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -3278,13 +4351,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n \ }\r\n]" headers: cache-control: @@ -3294,24 +4367,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:50 GMT + - Mon, 08 Sep 2025 17:13:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/d3bf1a8f-8933-4ee7-a1a5-f244ea135aac + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/a436da40-42d0-407c-83cf-b18fc7263bbe x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F3F62E733FB44E98B4DAAF50EB6F696A Ref B: PNQ231110907060 Ref C: 2025-09-08T17:13:12Z' status: code: 200 message: OK @@ -3329,9 +4403,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -3346,34 +4420,36 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n - \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" headers: cache-control: - no-cache content-length: - - '1168' + - '1216' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:51 GMT + - Mon, 08 Sep 2025 17:13:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/c71da78d-d590-49fc-aed9-163a5f906c71 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/4c7d6c9a-d519-43ff-a058-e8afdcb68703 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CC4D4200D97F4796B6C94EA3CDF3FB35 Ref B: PNQ231110909025 Ref C: 2025-09-08T17:13:12Z' status: code: 200 message: OK @@ -3391,13 +4467,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n \ }\r\n]" headers: cache-control: @@ -3407,24 +4483,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:53 GMT + - Mon, 08 Sep 2025 17:13:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/65d1f2e5-d1e9-464b-9b66-252a092336da + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/cb58adeb-6523-41d7-830d-0e0662fdcdc6 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E1B97D42D6B94BBD8A34808111E543EC Ref B: PNQ231110908042 Ref C: 2025-09-08T17:13:13Z' status: code: 200 message: OK @@ -3442,9 +4519,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -3459,66 +4536,68 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n - \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" headers: cache-control: - no-cache content-length: - - '1168' + - '1216' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:54 GMT + - Mon, 08 Sep 2025 17:13:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/c9cd6d74-358f-4a08-9b2e-c4048bee2c22 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/ff63b803-5592-472b-9fb9-70cf405472be x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2D6710E5163A40F2A13ACDC6A1811A13 Ref B: PNQ231110907031 Ref C: 2025-09-08T17:13:13Z' 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": "vm000009VNET", "type": "Microsoft.Network/virtualNetworks", "location": + [{"name": "vm000012VNET", "type": "Microsoft.Network/virtualNetworks", "location": "eastus2euap", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": - "vm000009Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": - "Microsoft.Network/networkSecurityGroups", "name": "vm000009NSG", "apiVersion": + "vm000012Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": + "Microsoft.Network/networkSecurityGroups", "name": "vm000012NSG", "apiVersion": "2015-06-15", "location": "eastus2euap", "tags": {}, "dependsOn": []}, {"apiVersion": - "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vm000009PublicIP", + "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vm000012PublicIP", "location": "eastus2euap", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type": - "Microsoft.Network/networkInterfaces", "name": "vm000009VMNic", "location": - "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm000009VNET", - "Microsoft.Network/networkSecurityGroups/vm000009NSG", "Microsoft.Network/publicIpAddresses/vm000009PublicIP"], - "properties": {"ipConfigurations": [{"name": "ipconfigvm000009", "properties": - {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG"}}}, - {"apiVersion": "2024-03-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm000009", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000009VMNic"], + "Microsoft.Network/networkInterfaces", "name": "vm000012VMNic", "location": + "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm000012VNET", + "Microsoft.Network/networkSecurityGroups/vm000012NSG", "Microsoft.Network/publicIpAddresses/vm000012PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm000012", "properties": + {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG"}}}, + {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm000012", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000012VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_D4s_v3"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic", + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": - "vm000009", "adminUsername": "ubuntuuser", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDy4KT6QZuyFbmWDdF/Vdc7B8PzU/TrgtnZNHofoVGpHUY9emsn6t3OhrT8y+he9stKP+CfcOEhR38Rn8gCJXdeo6VX3OyeCrkPMw+PZEj+TJi3Yp+N/BXritww+I8HFF+vihoKBPFP3DQSeq7VMQWGfFmf67Dm0r2F8CLvnqWPcrBx14GelF4vg3P3dDltHh9ZedEcNYA1b0+BcupL8249JVsv38oSMw3bTxTVzFzLY0KCgQno2HOt0VsZSvIp76UO4io4msPdmJm1NLIJ4s5YK6lHdnp8w+kuZi/pZyQx8GKbKjEqaxQaPDy5tHE5ohvIxqwZcewN7rlUJ3ZVYibd", + "vm000012", "adminUsername": "ubuntuuser", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD2YWxGLzUtVKWysDXWnv+cLEqKnPsOsyKBriQ5/6JPNU6+ROGEPh6HOwSe8f+phhQOhOL4feOsyebPHAb3/0peeRohvXMoR44lFUOkTPzv3dF7mSNx+DH8IHRMDEUisQxyBNzgevIqjppXyFbVCtBjNZbXOCjAQajl4MTMUS53DMB5v1Ut7+TTm9r1Q8vySD6q7fY/2HY/Li0aJS0hbehccFTxsy4YXd0c/Srmoc6QfJCzx6APkOEaf+1C8K6uFwdYW7tPTAP1Iw6jET5o+Fe7ON11PuxH/iUfD5VzFVPzkiw1Ob5UE08f36VvUMywOUtbq104bR2R5YMqQb/wCcX/", "path": "/home/ubuntuuser/.ssh/authorized_keys"}]}}}, "securityProfile": {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": true, "vTpmEnabled": true}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' @@ -3538,37 +4617,41 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","name":"vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"931673041568542476","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-07-02T09:23:58.6579238Z","duration":"PT0.0004225S","correlationId":"4cea310b-61bf-4182-a192-b03918c952ac","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000009VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000009PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000009"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp","name":"vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14892606981901438165","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-09-08T17:13:15.3534656Z","duration":"PT0.0001129S","correlationId":"ae1903f4-0c9b-4a9d-b1de-41fe7b279231","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000012VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000012NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000012PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000012VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000012VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000012"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2/operationStatuses/08584816946486801966?api-version=2022-09-01 + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k cache-control: - no-cache content-length: - - '2413' + - '2415' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:58 GMT + - Mon, 08 Sep 2025 17:13:16 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.24.0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 1.473.0 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0539BF798BF84FC3A2E15EE5E645E81A Ref B: PNQ231110909054 Ref C: 2025-09-08T17:13:14Z' status: code: 201 message: Created @@ -3586,9 +4669,55 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B2AC33166D484E5BB9E49E8D7A95AA58 Ref B: PNQ231110909052 Ref C: 2025-09-08T17:13:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k response: body: string: '{"status":"Running"}' @@ -3600,17 +4729,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:23:58 GMT + - Mon, 08 Sep 2025 17:13:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5D29B0AC10F3442D88050B92C2306878 Ref B: PNQ231110909029 Ref C: 2025-09-08T17:13:47Z' status: code: 200 message: OK @@ -3628,9 +4761,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k response: body: string: '{"status":"Running"}' @@ -3642,17 +4775,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:24:28 GMT + - Mon, 08 Sep 2025 17:14:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B6CF069EDEDF456F99A9AF798D0DC6BA Ref B: PNQ231110909029 Ref C: 2025-09-08T17:14:18Z' status: code: 200 message: OK @@ -3670,9 +4807,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k response: body: string: '{"status":"Succeeded"}' @@ -3684,17 +4821,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:24:59 GMT + - Mon, 08 Sep 2025 17:14:49 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9B9E07FC1DDB4897B3C565B3C24A41D4 Ref B: PNQ231110909060 Ref C: 2025-09-08T17:14:49Z' status: code: 200 message: OK @@ -3712,31 +4853,35 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","name":"vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"931673041568542476","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-07-02T09:24:41.3604691Z","duration":"PT42.7029678S","correlationId":"4cea310b-61bf-4182-a192-b03918c952ac","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000009VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000009PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000009"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp","name":"vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14892606981901438165","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-09-08T17:14:48.4881245Z","duration":"PT1M33.1346589S","correlationId":"ae1903f4-0c9b-4a9d-b1de-41fe7b279231","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000012VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000012NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000012PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000012VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000012VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000012"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3208' + - '3212' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:24:59 GMT + - Mon, 08 Sep 2025 17:14:50 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9C156EEA2B784D82A395E8C5161131BC Ref B: PNQ231110906029 Ref C: 2025-09-08T17:14:50Z' status: code: 200 message: OK @@ -3754,86 +4899,134 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009?$expand=instanceView&api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012?$expand=instanceView&api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vm000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009\",\r\n + string: "{\r\n \"name\": \"vm000012\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_D4s_v3\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3db8d79b-06ab-461e-bb4b-c2cfed06590a\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202406140\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm000009_OsDisk_1_47fac15982a94280930e702de11c1a33\",\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/vm000009_OsDisk_1_47fac15982a94280930e702de11c1a33\"\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"Mover\": \"Dev\",\r\n + \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\",\r\n \"team\": \"Discovery\"\r\n },\r\n \"identity\": {\r\n + \ \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a8f6b4e4-98fe-4163-a6be-697462a6a1e3\",\r\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"properties\": + {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n + \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"9013c8fe-708b-4d2a-b69e-48308446c541\",\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Canonical\",\r\n \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n + \ \"sku\": \"22_04-lts-gen2\",\r\n \"version\": \"latest\",\r\n + \ \"exactVersion\": \"22.04.202507300\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm000012_OsDisk_1_facbb9a03b0b4f4a94679b5116e24f5b\",\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/vm000012_OsDisk_1_facbb9a03b0b4f4a94679b5116e24f5b\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": - \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm000009\",\r\n + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm000012\",\r\n \ \"adminUsername\": \"ubuntuuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/ubuntuuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDy4KT6QZuyFbmWDdF/Vdc7B8PzU/TrgtnZNHofoVGpHUY9emsn6t3OhrT8y+he9stKP+CfcOEhR38Rn8gCJXdeo6VX3OyeCrkPMw+PZEj+TJi3Yp+N/BXritww+I8HFF+vihoKBPFP3DQSeq7VMQWGfFmf67Dm0r2F8CLvnqWPcrBx14GelF4vg3P3dDltHh9ZedEcNYA1b0+BcupL8249JVsv38oSMw3bTxTVzFzLY0KCgQno2HOt0VsZSvIp76UO4io4msPdmJm1NLIJ4s5YK6lHdnp8w+kuZi/pZyQx8GKbKjEqaxQaPDy5tHE5ohvIxqwZcewN7rlUJ3ZVYibd\"\r\n + AAAAB3NzaC1yc2EAAAADAQABAAABAQD2YWxGLzUtVKWysDXWnv+cLEqKnPsOsyKBriQ5/6JPNU6+ROGEPh6HOwSe8f+phhQOhOL4feOsyebPHAb3/0peeRohvXMoR44lFUOkTPzv3dF7mSNx+DH8IHRMDEUisQxyBNzgevIqjppXyFbVCtBjNZbXOCjAQajl4MTMUS53DMB5v1Ut7+TTm9r1Q8vySD6q7fY/2HY/Li0aJS0hbehccFTxsy4YXd0c/Srmoc6QfJCzx6APkOEaf+1C8K6uFwdYW7tPTAP1Iw6jET5o+Fe7ON11PuxH/iUfD5VzFVPzkiw1Ob5UE08f36VvUMywOUtbq104bR2R5YMqQb/wCcX/\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n - \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"computerName\": \"vm000009\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.11.1.8\",\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\": \"2024-07-02T09:24:55+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm000009_OsDisk_1_47fac15982a94280930e702de11c1a33\",\r\n + \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\",\r\n + \ \"proxyAgentSettings\": {\r\n \"enabled\": true,\r\n \"addProxyAgentExtension\": + true,\r\n \"wireServer\": {\r\n \"mode\": \"Audit\"\r\n },\r\n + \ \"imds\": {\r\n \"mode\": \"Audit\"\r\n }\r\n }\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm000012\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"rdpThumbPrint\": + \"SHA25627Z9VzqGUqTLw6ndOtyASPtowtIa0N/PtMapa+6I2fg\",\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"2.14.0.1\",\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\": + \"2025-09-08T17:14:41+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + [\r\n {\r\n \"type\": \"Microsoft.CPlat.ProxyAgent.ProxyAgentLinux\",\r\n + \ \"typeHandlerVersion\": \"1.0.35\",\r\n \"status\": + {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Extension is running\"\r\n }\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm000012_OsDisk_1_facbb9a03b0b4f4a94679b5116e24f5b\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2024-07-02T09:24:10.3845562+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-09-08T17:13:37.3986721+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": + [\r\n {\r\n \"name\": \"AzureGuestProxyAgentExtension\",\r\n + \ \"type\": \"Microsoft.CPlat.ProxyAgent.ProxyAgentLinux\",\r\n \"typeHandlerVersion\": + \"1.0.35\",\r\n \"substatuses\": [\r\n {\r\n \"code\": + \"ComponentStatus/ProxyAgentConnectionSummary/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"proxy connection summary is empty\"\r\n },\r\n + \ {\r\n \"code\": \"ComponentStatus/ProxyAgentStatus/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"{\\\"version\\\":\\\"1.0.35\\\",\\\"status\\\":\\\"SUCCESS\\\",\\\"monitorStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Proxy + agent status is running.\\\"},\\\"keyLatchStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Successfully + attest the key and ready to use. - 234\\\",\\\"states\\\":{\\\"imdsRuleId\\\":\\\"uBH/H72QqGFH+J8BZJS2ib+jN6E=\\\",\\\"wireServerRuleId\\\":\\\"uBH/H72QqGFH+J8BZJS2ib+jN6E=\\\",\\\"keyGuid\\\":\\\"13c0127c-8141-43eb-8920-2a23aa061c28\\\",\\\"hostGARuleId\\\":\\\"\\\",\\\"secureChannelState\\\":\\\"WireServer + Audit - IMDS Audit - HostGA Audit\\\"}},\\\"ebpfProgramStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Started + Redirector with eBPF maps - 190\\\"},\\\"proxyListenerStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Started + proxy listener, ready to accept request - 76\\\"},\\\"telemetryLoggerStatus\\\":{\\\"status\\\":\\\"UNKNOWN\\\",\\\"message\\\":\\\"Status + unknown.\\\"},\\\"proxyConnectionsCount\\\":0}\"\r\n },\r\n {\r\n + \ \"code\": \"ComponentStatus/ProxyAgentFailedAuthenticationSummary/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"proxy failed auth summary is + empty\"\r\n }\r\n ],\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Update Proxy Agent command output + successfully\",\r\n \"time\": \"2025-09-08T17:14:36+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2024-07-02T09:24:40.6514716+00:00\"\r\n + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningComplete\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning + complete\",\r\n \"time\": \"2025-09-08T17:14:46.5544158+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 \"timeCreated\": \"2024-07-02T09:24:06.8531574+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-09-08T17:13:33.9924813+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": + \"AzureGuestProxyAgentExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012/extensions/AzureGuestProxyAgentExtension\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"eastus2euap\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"forceUpdateTag\": \"3084aabb-80fc-47c6-8d66-74fbfd4497ec\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.CPlat.ProxyAgent\",\r\n \"type\": + \"ProxyAgentLinux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {}\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4138' + - '8118' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:01 GMT + - Mon, 08 Sep 2025 17:14:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5A8D94F1ADB544668D20DB2E3E5B2C2B Ref B: PNQ231110909040 Ref C: 2025-09-08T17:14:51Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -3848,38 +5041,39 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic?api-version=2022-01-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic?api-version=2022-01-01 response: body: - string: '{"name":"vm000009VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","etag":"W/\"8c4de60a-9b92-45c7-9644-88b2f4f35f5c\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"53016a39-7c6c-46e7-96bb-7774fa135c36","ipConfigurations":[{"name":"ipconfigvm000009","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic/ipConfigurations/ipconfigvm000009","etag":"W/\"8c4de60a-9b92-45c7-9644-88b2f4f35f5c\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"foqitoq0huhero44jpslxsiegd.cbnx.internal.cloudapp.net"},"macAddress":"60-45-BD-73-DD-8F","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus2euap","kind":"Regular"}' + string: '{"name":"vm000012VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","etag":"W/\"3388e054-6af3-40a0-bebd-ff2f552e42dd\"","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ef40be46-5730-4567-9c6a-70420173f10f","ipConfigurations":[{"name":"ipconfigvm000012","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic/ipConfigurations/ipconfigvm000012","etag":"W/\"3388e054-6af3-40a0-bebd-ff2f552e42dd\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"opsza24lv1oephopte4vxgt5yd.cbnx.internal.cloudapp.net"},"macAddress":"7C-1E-52-06-A2-B9","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus2euap","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '1988' + - '2020' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:02 GMT + - Mon, 08 Sep 2025 17:14:51 GMT etag: - - W/"8c4de60a-9b92-45c7-9644-88b2f4f35f5c" + - W/"3388e054-6af3-40a0-bebd-ff2f552e42dd" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 81909c73-6de8-466d-a847-640e6232652f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 05bf7389-3ed9-4803-8de3-2dba98f8f1b6 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3C793F1EACB643E3A7D64F0CBB31110F Ref B: PNQ231110907031 Ref C: 2025-09-08T17:14:51Z' status: code: 200 message: OK @@ -3897,44 +5091,45 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP?api-version=2022-01-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"vm000009PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP","etag":"W/\"62f8987e-9dcd-4940-88a6-38bbe7663cc3\"","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7506c4c5-4f1b-4913-a50a-af03f71294f0","ipAddress":"40.89.93.185","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic/ipConfigurations/ipconfigvm000009"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"vm000012PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP","etag":"W/\"8b08f7fb-ce2e-461d-87fc-17a595b4820f\"","location":"eastus2euap","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"cdd9dc1e-9cbf-49c2-a95f-1b32628fbba2","ipAddress":"20.252.128.195","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic/ipConfigurations/ipconfigvm000012"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '795' + - '829' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:04 GMT + - Mon, 08 Sep 2025 17:14:51 GMT etag: - - W/"62f8987e-9dcd-4940-88a6-38bbe7663cc3" + - W/"8b08f7fb-ce2e-461d-87fc-17a595b4820f" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1f8a6e32-bc86-4493-b4b2-f31645c48d10 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - a9600072-eadc-4e06-9b94-8098ff04d79f + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 49FE7E031AB149F48509F76020B867BB Ref B: PNQ231110909052 Ref C: 2025-09-08T17:14:52Z' status: code: 200 message: OK - request: body: '{"properties": {"description": "endpointDesc", "endpointType": "NfsMount", - "export": "exportfolder", "host": "40.89.93.185", "nfsVersion": "NFSv4"}}' + "export": "exportfolder", "host": "20.252.128.195", "nfsVersion": "NFSv4"}}' headers: Accept: - application/json @@ -3945,47 +5140,51 @@ interactions: Connection: - keep-alive Content-Length: - - '148' + - '150' Content-Type: - application/json ParameterSetName: - -g --storage-mover-name -n --description --export --nfs-version --host User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:53.0158186Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '681' + - '667' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:05 GMT + - Mon, 08 Sep 2025 17:14:53 GMT etag: - - '"aa00f071-0000-3400-0000-6683c7720000"' + - '"7900ffcb-0000-3300-0000-68bf0f0d0000"' expires: - '-1' mise-correlation-id: - - d32890e2-afd0-447a-bf38-cf727b4c9fc4 + - feb01d55-9933-44b0-b32a-94f6dfc4efe8 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/aa3c9b36-3c85-4af4-85d9-6300e5472d90 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/ac4da60c-c707-4165-bad8-278e13440563 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4D8D1C0EC14743FC8EED41DCC56A4B7B Ref B: PNQ231110908025 Ref C: 2025-09-08T17:14:52Z' status: code: 200 message: OK @@ -4003,37 +5202,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:53.0158186Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '681' + - '667' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:08 GMT + - Mon, 08 Sep 2025 17:14:53 GMT etag: - - '"aa00f071-0000-3400-0000-6683c7720000"' + - '"7900ffcb-0000-3300-0000-68bf0f0d0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/18e45fe4-b0fb-4178-a2c5-0e148cc18862 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/e7ef5dac-6a0e-4763-8eb7-57815969a9ff x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9D67301999C349A39BB75F350B76485E Ref B: PNQ231110909034 Ref C: 2025-09-08T17:14:54Z' status: code: 200 message: OK @@ -4051,43 +5254,47 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:53.0158186Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '681' + - '667' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:09 GMT + - Mon, 08 Sep 2025 17:14:54 GMT etag: - - '"aa00f071-0000-3400-0000-6683c7720000"' + - '"7900ffcb-0000-3300-0000-68bf0f0d0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/1280f113-479d-4a48-9bdc-79184712f614 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/1f322e58-549e-4533-bb43-375c7f5ae3e8 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CB62F6BCE3E54A879BDC8C36EB78F2E1 Ref B: PNQ231110909036 Ref C: 2025-09-08T17:14:54Z' status: code: 200 message: OK - request: body: '{"properties": {"description": "endpointDescUpdate", "endpointType": "NfsMount", - "export": "exportfolder", "host": "40.89.93.185", "nfsVersion": "NFSv4"}}' + "export": "exportfolder", "host": "20.252.128.195", "nfsVersion": "NFSv4"}}' headers: Accept: - application/json @@ -4098,47 +5305,51 @@ interactions: Connection: - keep-alive Content-Length: - - '154' + - '156' Content-Type: - application/json ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:10.9864383Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:55.7349911Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '687' + - '673' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:10 GMT + - Mon, 08 Sep 2025 17:14:55 GMT etag: - - '"aa001972-0000-3400-0000-6683c7770000"' + - '"790004cc-0000-3300-0000-68bf0f100000"' expires: - '-1' mise-correlation-id: - - e76151ce-3682-401e-be05-6394ac2865ce + - de0429f8-beeb-4498-a8d9-da6465403081 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/66a3aae0-58aa-4483-8797-18923929c185 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/057f8589-1d39-4387-ba49-0dda1c178275 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 89C972CD1CC44461820837C07F994317 Ref B: PNQ231110906060 Ref C: 2025-09-08T17:14:55Z' status: code: 200 message: OK @@ -4156,31 +5367,35 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2024-07-02T09:22:38Z","module":"storage-mover","DateCreated":"2024-07-02T09:22:44Z","Creator":"zhiyihuang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2025-09-08T17:12:10Z","module":"storage-mover"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '461' + - '387' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:12 GMT + - Mon, 08 Sep 2025 17:14:56 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 7DC9924535FA48F0AD36E284A813C596 Ref B: PNQ231110909060 Ref C: 2025-09-08T17:14:56Z' status: code: 200 message: OK @@ -4194,9 +5409,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.0 + - python-requests/2.32.4 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + 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 @@ -4242,9 +5457,6 @@ interactions: \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: @@ -4256,7 +5468,7 @@ interactions: connection: - keep-alive content-length: - - '3615' + - '3384' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -4264,35 +5476,35 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 02 Jul 2024 09:25:13 GMT + - Mon, 08 Sep 2025 17:14:57 GMT etag: - - W/"9fee27d398b0211e374a0f0e8e79c9b3a0342cfa43466b26b8548409639c8c17" + - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2" expires: - - Tue, 02 Jul 2024 09:30:13 GMT + - Mon, 08 Sep 2025 17:19:57 GMT source-age: - - '241' + - '108' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding,Origin + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: - HIT x-cache-hits: - - '1' + - '0' x-content-type-options: - nosniff x-fastly-request-id: - - a2f3945b06606fd7fd4c48afe9788a03b0ce78bd + - ac86cdda67f8e6fa43cbc61a7d0cfadfc72f087f x-frame-options: - deny x-github-request-id: - - 581E:AA2A7:6885C0:7F60A9:66834B25 + - A29E:23FABD:2169F86:2798B64:68BF0EA5 x-served-by: - - cache-qpg1222-QPG + - cache-sin-wsss1830034-SIN x-timer: - - S1719912313.220013,VS0,VE1 + - S1757351697.248069,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -4312,13 +5524,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n \ }\r\n]" headers: cache-control: @@ -4328,24 +5540,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:14 GMT + - Mon, 08 Sep 2025 17:14:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/35eb25c0-686e-42cc-bf41-7f5fd1ca8c03 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/96fe19aa-91ca-4fe3-8d6f-334b773da05c x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: AF9FE911CC4443518A27AEBAA42AD270 Ref B: PNQ231110907023 Ref C: 2025-09-08T17:14:57Z' status: code: 200 message: OK @@ -4363,9 +5576,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -4380,34 +5593,36 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n - \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" headers: cache-control: - no-cache content-length: - - '1168' + - '1216' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:14 GMT + - Mon, 08 Sep 2025 17:14:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/20890626-a8ec-4407-a3dd-42e7e6552d2e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/2533627c-6b5b-4320-8a45-63195a529900 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2F9128F6A387458F8D31EB2D6575BF9C Ref B: PNQ231110906031 Ref C: 2025-09-08T17:14:57Z' status: code: 200 message: OK @@ -4425,36 +5640,39 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: - string: '{"value":[{"name":"vm000009VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET","etag":"W/\"2d0db8d1-5b2c-499e-a41f-d3465e17edfe\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ba89a02b-3d1a-480e-bbde-4be4bbc90433","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm000009Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet","etag":"W/\"2d0db8d1-5b2c-499e-a41f-d3465e17edfe\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG5E5HVYER7TCIOQDDNL2MHH2IOFZZY5S5EJLG2T3CTUTEFKZR4IALISHFXUERSP57S/providers/Microsoft.Network/networkInterfaces/VMZJJ3PMAMGQCK5BWALT5Q2LVMNIC/ipConfigurations/IPCONFIGVMZJJ3PMAMGQCK5BWALT5Q2L"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}' + string: '{"value":[{"name":"vm000012VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET","etag":"W/\"6b679a06-0a2f-4432-a11c-89f109cac094\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"7390e573-aecb-47dc-9dcf-993d5b9a7fc3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm000012Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet","etag":"W/\"6b679a06-0a2f-4432-a11c-89f109cac094\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG4MJKRSU7256ZF625637CKJ4IGIBWQ7RE5FLTTIOLSGVFMLOKL5BSOPV5EBECL4JLQ/providers/Microsoft.Network/networkInterfaces/VMG3UCQ3THFRFXD4UDBAMETCVMNIC/ipConfigurations/IPCONFIGVMG3UCQ3THFRFXD4UDBAMETC"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}' headers: cache-control: - no-cache content-length: - - '1317' + - '1349' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:17 GMT + - Mon, 08 Sep 2025 17:14:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6129e7d0-9b92-4a11-88d9-247152f77680 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - 60c3d161-2419-49c4-88ef-b0cf2a9394e8 + x-ms-original-request-ids: + - 5140c2a8-b252-4c6e-9786-724631059e64 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 370F2DDD14A54E438573E60B21F772C6 Ref B: PNQ231110906042 Ref C: 2025-09-08T17:14:58Z' status: code: 200 message: OK @@ -4472,9 +5690,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n @@ -4707,1363 +5925,1666 @@ interactions: 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v3\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48s_v3\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2s_v4\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4s_v4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8s_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16s_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32s_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48s_v4\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2s_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4s_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8s_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16s_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32s_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48s_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96s_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48_v3\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v4\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4_v4\",\r\n \"numberOfCores\": 4,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n + \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8_v4\",\r\n \"numberOfCores\": 8,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n + \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48_v4\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4_v5\",\r\n \"numberOfCores\": 4,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n + \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8_v5\",\r\n \"numberOfCores\": 8,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n + \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2ds_v4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2ds_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4ds_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4ds_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16ds_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ds_v4\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ds_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48ds_v4\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2ds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4ds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2ds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4ds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8ds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4ds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16ds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ds_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48ds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v4\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64ds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ds_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E104ids_v5\",\r\n \"numberOfCores\": + 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2d_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v4\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4d_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v4\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8d_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v4\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16d_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v4\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20d_v4\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32d_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v4\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48d_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v4\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64d_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2d_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v5\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4d_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v5\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8d_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v5\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16d_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v5\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20d_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32d_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48d_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v5\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64d_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96s_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96d_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E104id_v5\",\r\n \"numberOfCores\": + 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20s_v3\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1024000,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": + 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48s_v3\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4-2s_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4s_v4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-2s_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-4s_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8s_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16-4s_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20s_v4\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48s_v4\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4-2s_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4s_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-2s_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-4s_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8s_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16-4s_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20s_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48s_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96s_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E104is_v5\",\r\n \"numberOfCores\": + 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": + 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": + 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": + 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": + 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20_v3\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v3\",\r\n \"numberOfCores\": + 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v4\",\r\n \"numberOfCores\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4_v4\",\r\n \"numberOfCores\": 4,\r\n + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4_v4\",\r\n \"numberOfCores\": 4,\r\n \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8_v4\",\r\n \"numberOfCores\": 8,\r\n + \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8_v4\",\r\n \"numberOfCores\": 8,\r\n \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16_v4\",\r\n \"numberOfCores\": + \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v4\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E20_v4\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4_v5\",\r\n \"numberOfCores\": 4,\r\n + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4_v5\",\r\n \"numberOfCores\": 4,\r\n \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8_v5\",\r\n \"numberOfCores\": 8,\r\n + \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8_v5\",\r\n \"numberOfCores\": 8,\r\n \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16_v5\",\r\n \"numberOfCores\": + \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E20_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E104i_v5\",\r\n \"numberOfCores\": + 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ds_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ds_v4\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v4\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v4\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v4\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v4\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F48s_v2\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"numberOfCores\": + 393216,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v5\",\r\n \"numberOfCores\": + 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": + 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2bs_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4bs_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8bs_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16bs_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32bs_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48bs_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64bs_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96bs_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E112ibs_v5\",\r\n \"numberOfCores\": + 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2bds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4bds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E8bds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E16bds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E32bds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E48bds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64bds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E96bds_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104ids_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + \ },\r\n {\r\n \"name\": \"Standard_E112ibds_v5\",\r\n \"numberOfCores\": + 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2d_v4\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D2ls_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4d_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ls_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8d_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ls_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16d_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ls_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20d_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32d_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ls_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48d_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48ls_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64d_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64ls_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2d_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96ls_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2lds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4d_v5\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4lds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8d_v5\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8lds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16d_v5\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16lds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20d_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32d_v5\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32lds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48d_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48lds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64d_v5\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64lds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96d_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96lds_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104id_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": + 3686400,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2ls_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2s_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2ts_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4ls_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4s_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8ls_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8s_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16ls_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16s_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v3\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B32ls_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B32s_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v3\",\r\n \"numberOfCores\": + 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": + 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v4\",\r\n \"numberOfCores\": + 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E80is_v4\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M208ms_v2\",\r\n \"numberOfCores\": + 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M208s_v2\",\r\n \"numberOfCores\": + 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 2918400,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208s_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208ms_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416ms_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_8_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 7782400,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_9_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 8773632,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_10_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 9723904,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v4\",\r\n \"numberOfCores\": + 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v4\",\r\n \"numberOfCores\": + 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v4\",\r\n \"numberOfCores\": + 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v4\",\r\n \"numberOfCores\": + 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v4\",\r\n \"numberOfCores\": + 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v4\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v5\",\r\n \"numberOfCores\": + 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2as_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v5\",\r\n \"numberOfCores\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v5\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8as_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v5\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16as_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v5\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v5\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v5\",\r\n \"numberOfCores\": + 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64as_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96s_v5\",\r\n \"numberOfCores\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96as_v4\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104is_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": + 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2a_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E4a_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E8a_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E16a_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E20a_v4\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E48a_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4_v4\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8_v4\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4_v5\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8_v5\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64a_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96_v5\",\r\n \"numberOfCores\": + 1638400,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96a_v4\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104i_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2as_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4as_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4as_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16as_v4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20as_v4\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48as_v4\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96as_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ias_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2as_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4as_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F48s_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48as_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64as_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": - 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2bs_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2as_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4bs_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E4-2as_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8bs_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E4as_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-2as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16bs_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E8-4as_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8as_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16-4as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32bs_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16as_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20as_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48bs_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32as_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48as_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64bs_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ibs_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64as_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E112ias_v5\",\r\n \"numberOfCores\": 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2bds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D2ads_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4ads_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8ads_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16ads_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32ads_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ads_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ads_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ads_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4bds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E4-2ads_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8bds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E4ads_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2ads_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16bds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E8-4ads_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8ads_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4ads_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32bds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E16-8ads_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16ads_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ads_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8ads_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48bds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E32-16ads_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ads_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48ads_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64bds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64-16ads_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ibds_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ls_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ls_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ls_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48ls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64ls_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64-32ads_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ls_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2lds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4lds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8lds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16lds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32lds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48lds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64lds_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64ads_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96lds_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2ls_v2\",\r\n \"numberOfCores\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E112iads_v5\",\r\n \"numberOfCores\": + 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2s_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ts_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ls_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4s_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ls_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8s_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ls_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16s_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32ls_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32s_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2es_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC4es_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC8es_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC16es_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC32es_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC48es_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC64es_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96es_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2eds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": + 48128,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4eds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": + 107520,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8eds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": + 232448,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16eds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": + 474112,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32eds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": + 957440,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48eds_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1440768,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64eds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96eds_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2es_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC4es_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC8es_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC16es_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC32es_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48es_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64es_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128es_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128ies_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2eds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": + 48128,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4eds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 107520,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8eds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 232448,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16eds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 474112,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32eds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 957440,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48eds_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1440768,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64eds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128eds_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128ieds_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ads_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D4ads_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D8ads_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D16ads_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D32ads_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ads_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ads_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96ads_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ads_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ads_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ads_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16ads_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ads_v6\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ads_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48ads_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64ads_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ads_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": + 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 5765120,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS4-4\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS4-8\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS5-8\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_GS5-16\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": + 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": + 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": + 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E80is_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M208ms_v2\",\r\n \"numberOfCores\": - 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M208s_v2\",\r\n \"numberOfCores\": - 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2918400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208s_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208ms_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416ms_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_8_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 7782400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"numberOfCores\": + 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2as_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4as_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8as_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16as_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32as_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48as_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64as_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96as_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2as_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4as_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8as_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16as_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20as_v6\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32as_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48as_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64as_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96as_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2als_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4als_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8als_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16als_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20a_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32als_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48als_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64als_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96als_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2alds_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4alds_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8alds_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16alds_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32alds_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48alds_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64alds_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ias_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96alds_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2as_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_F4as_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_F8as_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_F16as_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32as_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_F32as_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_F48as_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_F64as_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_F2als_v6\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_F4als_v6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_F8als_v6\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_F16als_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_F32als_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_F48als_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_F64als_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_F2ams_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_F4ams_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_F8ams_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_F16ams_v6\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_F32ams_v6\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_F48ams_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_F64ams_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ias_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC24s_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC1ds_v3\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2ds_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ads_v5\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4ds_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ads_v5\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8ds_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ads_v5\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16ds_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ads_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ads_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC24ds_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32ds_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ads_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48ds_v3\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L8as_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_L16as_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32as_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ads_v5\",\r\n \"numberOfCores\": + 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L48as_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ads_v5\",\r\n \"numberOfCores\": + 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L64as_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112iads_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L80as_v3\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_DC2as_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n @@ -6252,257 +7773,623 @@ interactions: 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ls_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ls_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ls_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ls_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ls_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48ls_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64ls_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96ls_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D128ls_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2lds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4lds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8lds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16lds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32lds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48lds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64lds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96lds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D128lds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2s_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4s_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8s_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16s_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32s_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48s_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96s_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D128s_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96ds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D128ds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4-2s_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4s_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-2s_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-4s_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8s_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16-4s_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20s_v6\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48s_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96s_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128-32s_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128-64s_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128s_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4-2ds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-2ds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-4ds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16-4ds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16ds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ds_v6\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48ds_v6\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64ds_v6\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ds_v6\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128-32ds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128-64ds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E128ds_v6\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX2ms_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 43008,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX4-2ms_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX4ms_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX8-2ms_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX8-4ms_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX8ms_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX12-6ms_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX12ms_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16-4ms_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16-8ms_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16ms_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24-6ms_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24-12ms_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24ms_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32-8ms_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32-16ms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32ms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48-12ms_v2\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48-24ms_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48ms_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64-16ms_v2\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96es_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64-32ms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64ms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX2mds_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 48128,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 43008,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX4-2mds_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 107520,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX4mds_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_FX8-2mds_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 232448,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX8-4mds_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX8mds_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX12-6mds_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX12mds_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16-4mds_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 474112,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16-8mds_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX16mds_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24-6mds_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24-12mds_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX24mds_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32-8mds_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 957440,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32-16mds_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX32mds_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48-12mds_v2\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1440768,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48-24mds_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX48mds_v2\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64-16mds_v2\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96eds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64-32mds_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX64mds_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E192is_v6\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E192ids_v6\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L2s_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC4es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_L4s_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_L8s_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_L16s_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32s_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L48s_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L64s_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128es_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128ies_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2eds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L80s_v4\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_L96s_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96-24ms_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96-48ms_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96ms_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96-24mds_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96-48mds_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_FX96mds_v2\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 48128,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4eds_v5\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 107520,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8eds_v5\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 232448,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16eds_v5\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 474112,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32eds_v5\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 957440,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48eds_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1440768,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64eds_v5\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128eds_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128ieds_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16s_v3\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC24s_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32s_v3\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48s_v3\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1ds_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2ds_v3\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ds_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ds_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ds_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC24ds_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ds_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ds_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8as_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16as_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32as_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48as_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64as_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80as_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7340032,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14680064,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": 64,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7340032,\r\n + \ \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": 128,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14680064,\r\n + \ \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": 32,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1048576,\r\n + \ \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": 32,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1048576,\r\n + \ \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": 64,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2097152,\r\n + \ \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2097152,\r\n + \ \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4194304,\r\n + \ \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_M64ms_v2\",\r\n \"numberOfCores\": @@ -6595,7 +8482,19 @@ interactions: 64\r\n },\r\n {\r\n \"name\": \"Standard_M192idms_v2\",\r\n \"numberOfCores\": 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4194304,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 90112,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n \ },\r\n {\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"numberOfCores\": @@ -6607,42 +8506,159 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 720896,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_ND96is_MI300X_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D2pls_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4pls_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8pls_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16pls_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32pls_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48pls_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64pls_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96pls_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_ND96isr_MI300X_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2plds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4plds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8plds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16plds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32plds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48plds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64plds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96plds_v6\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": 16\r\n + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ps_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ps_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ps_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ps_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ps_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ps_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ps_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4pds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8pds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16pds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32pds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48pds_v6\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64pds_v6\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ps_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ps_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ps_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16ps_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ps_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2pds_v6\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4pds_v6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8pds_v6\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16pds_v6\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32pds_v6\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n \ }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '148107' + - '202794' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:18 GMT + - Mon, 08 Sep 2025 17:14:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/bab74962-c197-4b45-9952-6b393e37ffb6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/28d80976-776d-46e3-ae38-d82ba0dfbc13 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetSubscriptionInfoSubscriptionMaximum;359 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 318E27E7AEA74F8798B8C522C7F70D3B Ref B: PNQ231110909054 Ref C: 2025-09-08T17:14:59Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6653,9 +8669,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.0 + - python-requests/2.32.4 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + 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 @@ -6701,9 +8717,6 @@ interactions: \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: @@ -6715,7 +8728,7 @@ interactions: connection: - keep-alive content-length: - - '3615' + - '3384' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -6723,17 +8736,17 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 02 Jul 2024 09:25:20 GMT + - Mon, 08 Sep 2025 17:15:00 GMT etag: - - W/"9fee27d398b0211e374a0f0e8e79c9b3a0342cfa43466b26b8548409639c8c17" + - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2" expires: - - Tue, 02 Jul 2024 09:30:20 GMT + - Mon, 08 Sep 2025 17:20:00 GMT source-age: - - '248' + - '111' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding,Origin + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: @@ -6743,15 +8756,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - ad8067a5ea36e3bc771bcc72a83b9a38b3e3937e + - 2f5c39ca74dd338860de71e55626137f78fa2b0b x-frame-options: - deny x-github-request-id: - - 581E:AA2A7:6885C0:7F60A9:66834B25 + - A29E:23FABD:2169F86:2798B64:68BF0EA5 x-served-by: - - cache-qpg1279-QPG + - cache-sin-wsss1830062-SIN x-timer: - - S1719912320.265394,VS0,VE1 + - S1757351701.621171,VS0,VE3 x-xss-protection: - 1; mode=block status: @@ -6771,13 +8784,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n \ }\r\n]" headers: cache-control: @@ -6787,24 +8800,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:21 GMT + - Mon, 08 Sep 2025 17:15:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/d5a6e9d6-5845-4a50-bea6-bbcfc3787688 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/200e74d4-e4c6-4572-a79d-11f5a4e0521e x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E56A2F15CB5A4BD5AEC7DBF12F5FD587 Ref B: PNQ231110909040 Ref C: 2025-09-08T17:15:00Z' status: code: 200 message: OK @@ -6822,9 +8836,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -6839,34 +8853,36 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n - \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" headers: cache-control: - no-cache content-length: - - '1168' + - '1216' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:22 GMT + - Mon, 08 Sep 2025 17:15:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/ce7d85c5-b240-4dcf-aac1-0bfa28ccb214 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/f691dba5-252f-4cd1-a7ea-c1d648730003 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2006F54BBF2446EC8B02D25B5D1B00A5 Ref B: PNQ231110907060 Ref C: 2025-09-08T17:15:01Z' status: code: 200 message: OK @@ -6884,13 +8900,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n \ }\r\n]" headers: cache-control: @@ -6900,24 +8916,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:23 GMT + - Mon, 08 Sep 2025 17:15:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/7fb80410-4a62-4a63-b136-c49ec9ba6193 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/7aecceba-1edc-43cf-b4eb-081343b757d0 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 06C5C96ECC804772811A7723418A8201 Ref B: PNQ231110909052 Ref C: 2025-09-08T17:15:01Z' status: code: 200 message: OK @@ -6935,9 +8952,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -6952,62 +8969,64 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n - \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" headers: cache-control: - no-cache content-length: - - '1168' + - '1216' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:25 GMT + - Mon, 08 Sep 2025 17:15:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/1a444848-4883-4795-9ed2-562ab86ff4d0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/e9f7605f-f59f-4a22-ac2b-a8ce7ea55adb x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 16952C95ED34450EA03E5A461D2C659A Ref B: PNQ231110909060 Ref C: 2025-09-08T17:15:02Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm000010NSG", + [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm000013NSG", "apiVersion": "2015-06-15", "location": "eastus2euap", "tags": {}, "dependsOn": []}, {"apiVersion": "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "vm000010PublicIP", "location": "eastus2euap", "tags": {}, "dependsOn": + "name": "vm000013PublicIP", "location": "eastus2euap", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", - "name": "vm000010VMNic", "location": "eastus2euap", "tags": {}, "dependsOn": - ["Microsoft.Network/networkSecurityGroups/vm000010NSG", "Microsoft.Network/publicIpAddresses/vm000010PublicIP"], - "properties": {"ipConfigurations": [{"name": "ipconfigvm000010", "properties": - {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG"}}}, - {"apiVersion": "2024-03-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm000010", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000010VMNic"], + "name": "vm000013VMNic", "location": "eastus2euap", "tags": {}, "dependsOn": + ["Microsoft.Network/networkSecurityGroups/vm000013NSG", "Microsoft.Network/publicIpAddresses/vm000013PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm000013", "properties": + {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG"}}}, + {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm000013", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000013VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_D4s_v3"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic", + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": - "vm000010", "adminUsername": "ubuntuuser", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDy4KT6QZuyFbmWDdF/Vdc7B8PzU/TrgtnZNHofoVGpHUY9emsn6t3OhrT8y+he9stKP+CfcOEhR38Rn8gCJXdeo6VX3OyeCrkPMw+PZEj+TJi3Yp+N/BXritww+I8HFF+vihoKBPFP3DQSeq7VMQWGfFmf67Dm0r2F8CLvnqWPcrBx14GelF4vg3P3dDltHh9ZedEcNYA1b0+BcupL8249JVsv38oSMw3bTxTVzFzLY0KCgQno2HOt0VsZSvIp76UO4io4msPdmJm1NLIJ4s5YK6lHdnp8w+kuZi/pZyQx8GKbKjEqaxQaPDy5tHE5ohvIxqwZcewN7rlUJ3ZVYibd", + "vm000013", "adminUsername": "ubuntuuser", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD2YWxGLzUtVKWysDXWnv+cLEqKnPsOsyKBriQ5/6JPNU6+ROGEPh6HOwSe8f+phhQOhOL4feOsyebPHAb3/0peeRohvXMoR44lFUOkTPzv3dF7mSNx+DH8IHRMDEUisQxyBNzgevIqjppXyFbVCtBjNZbXOCjAQajl4MTMUS53DMB5v1Ut7+TTm9r1Q8vySD6q7fY/2HY/Li0aJS0hbehccFTxsy4YXd0c/Srmoc6QfJCzx6APkOEaf+1C8K6uFwdYW7tPTAP1Iw6jET5o+Fe7ON11PuxH/iUfD5VzFVPzkiw1Ob5UE08f36VvUMywOUtbq104bR2R5YMqQb/wCcX/", "path": "/home/ubuntuuser/.ssh/authorized_keys"}]}}}, "securityProfile": {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": true, "vTpmEnabled": true}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' @@ -7027,37 +9046,41 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","name":"vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11142081930931402277","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-07-02T09:25:27.7553406Z","duration":"PT0.000102S","correlationId":"a4f45bcb-dcdf-41dd-aa7e-4c556c3d6d97","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000010PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000010"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm","name":"vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14615989426423034170","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-09-08T17:15:03.1910782Z","duration":"PT0.0001165S","correlationId":"2b6284a1-edde-4694-991b-8d7b0324d1e4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000013NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000013PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000013VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000013VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000013"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2/operationStatuses/08584816945586504362?api-version=2022-09-01 + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U cache-control: - no-cache content-length: - - '2120' + - '2121' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:26 GMT + - Mon, 08 Sep 2025 17:15:04 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.24.0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 1.473.0 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: BE52AF517F1B49AB8FCA405124B46BFD Ref B: PNQ231110907062 Ref C: 2025-09-08T17:15:02Z' status: code: 201 message: Created @@ -7075,9 +9098,55 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:15:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E3B0A239EF1F4BB7A8E53CE85755CBBD Ref B: PNQ231110906060 Ref C: 2025-09-08T17:15:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U response: body: string: '{"status":"Running"}' @@ -7089,17 +9158,67 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:27 GMT + - Mon, 08 Sep 2025 17:15:35 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9FB2A088E9D14C2B89F5D35AD4F53EE8 Ref B: PNQ231110909060 Ref C: 2025-09-08T17:15:36Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:16:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F16ACA14B0FA468583540E3852B24A7D Ref B: PNQ231110909025 Ref C: 2025-09-08T17:16:06Z' status: code: 200 message: OK @@ -7117,9 +9236,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U response: body: string: '{"status":"Running"}' @@ -7131,17 +9250,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:25:57 GMT + - Mon, 08 Sep 2025 17:16:36 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: FBB17B4C721A48EBB0CABC05F1C80AD7 Ref B: PNQ231110909042 Ref C: 2025-09-08T17:16:37Z' status: code: 200 message: OK @@ -7159,9 +9282,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U response: body: string: '{"status":"Succeeded"}' @@ -7173,17 +9296,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:28 GMT + - Mon, 08 Sep 2025 17:17:08 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 02EC48A2EAC648219CEA27FCB9D18B3D Ref B: PNQ231110909034 Ref C: 2025-09-08T17:17:08Z' status: code: 200 message: OK @@ -7201,31 +9328,35 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","name":"vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11142081930931402277","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-07-02T09:26:12.6094225Z","duration":"PT44.8541839S","correlationId":"a4f45bcb-dcdf-41dd-aa7e-4c556c3d6d97","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000010PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000010"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm","name":"vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14615989426423034170","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-09-08T17:16:42.380281Z","duration":"PT1M39.1892028S","correlationId":"2b6284a1-edde-4694-991b-8d7b0324d1e4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000013NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000013PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000013VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000013VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000013"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '2766' + - '2767' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:28 GMT + - Mon, 08 Sep 2025 17:17:08 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6A9967E8D15E42E988CB5ADD4B29EF94 Ref B: PNQ231110909040 Ref C: 2025-09-08T17:17:08Z' status: code: 200 message: OK @@ -7243,83 +9374,130 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010?$expand=instanceView&api-version=2024-03-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013?$expand=instanceView&api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vm000010\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010\",\r\n + string: "{\r\n \"name\": \"vm000013\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_D4s_v3\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"5588df94-42be-4755-9c0c-d7fb0045b62e\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202406140\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm000010_OsDisk_1_0288de70bcea440b8c64548d95ac0211\",\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/vm000010_OsDisk_1_0288de70bcea440b8c64548d95ac0211\"\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"Mover\": \"Dev\",\r\n + \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\",\r\n \"team\": \"Discovery\"\r\n },\r\n \"identity\": {\r\n + \ \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f0ab1386-1506-466e-9e6e-abae64a7f2a9\",\r\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"properties\": + {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n + \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"13fc5430-7157-4fe3-b450-a242b301766f\",\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Canonical\",\r\n \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n + \ \"sku\": \"22_04-lts-gen2\",\r\n \"version\": \"latest\",\r\n + \ \"exactVersion\": \"22.04.202507300\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm000013_OsDisk_1_09d3997e129e47fc933164495e661ec6\",\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/vm000013_OsDisk_1_09d3997e129e47fc933164495e661ec6\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": - \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm000010\",\r\n + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm000013\",\r\n \ \"adminUsername\": \"ubuntuuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/ubuntuuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDy4KT6QZuyFbmWDdF/Vdc7B8PzU/TrgtnZNHofoVGpHUY9emsn6t3OhrT8y+he9stKP+CfcOEhR38Rn8gCJXdeo6VX3OyeCrkPMw+PZEj+TJi3Yp+N/BXritww+I8HFF+vihoKBPFP3DQSeq7VMQWGfFmf67Dm0r2F8CLvnqWPcrBx14GelF4vg3P3dDltHh9ZedEcNYA1b0+BcupL8249JVsv38oSMw3bTxTVzFzLY0KCgQno2HOt0VsZSvIp76UO4io4msPdmJm1NLIJ4s5YK6lHdnp8w+kuZi/pZyQx8GKbKjEqaxQaPDy5tHE5ohvIxqwZcewN7rlUJ3ZVYibd\"\r\n + AAAAB3NzaC1yc2EAAAADAQABAAABAQD2YWxGLzUtVKWysDXWnv+cLEqKnPsOsyKBriQ5/6JPNU6+ROGEPh6HOwSe8f+phhQOhOL4feOsyebPHAb3/0peeRohvXMoR44lFUOkTPzv3dF7mSNx+DH8IHRMDEUisQxyBNzgevIqjppXyFbVCtBjNZbXOCjAQajl4MTMUS53DMB5v1Ut7+TTm9r1Q8vySD6q7fY/2HY/Li0aJS0hbehccFTxsy4YXd0c/Srmoc6QfJCzx6APkOEaf+1C8K6uFwdYW7tPTAP1Iw6jET5o+Fe7ON11PuxH/iUfD5VzFVPzkiw1Ob5UE08f36VvUMywOUtbq104bR2R5YMqQb/wCcX/\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n - \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"computerName\": \"vm000010\",\r\n \"osName\": + \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\",\r\n + \ \"proxyAgentSettings\": {\r\n \"enabled\": true,\r\n \"addProxyAgentExtension\": + true,\r\n \"wireServer\": {\r\n \"mode\": \"Audit\"\r\n },\r\n + \ \"imds\": {\r\n \"mode\": \"Audit\"\r\n }\r\n }\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm000013\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.11.1.8\",\r\n \"statuses\": [\r\n {\r\n + \ \"vmAgentVersion\": \"2.14.0.1\",\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\": \"2024-07-02T09:26:24+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm000010_OsDisk_1_0288de70bcea440b8c64548d95ac0211\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2025-09-08T17:17:06+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n + \ \"type\": \"Microsoft.CPlat.ProxyAgent.ProxyAgentLinux\",\r\n + \ \"typeHandlerVersion\": \"1.0.35\",\r\n \"status\": + {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Extension is running\"\r\n }\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm000013_OsDisk_1_09d3997e129e47fc933164495e661ec6\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2024-07-02T09:25:38.7163474+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-09-08T17:15:30.5385035+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": + [\r\n {\r\n \"name\": \"AzureGuestProxyAgentExtension\",\r\n + \ \"type\": \"Microsoft.CPlat.ProxyAgent.ProxyAgentLinux\",\r\n \"typeHandlerVersion\": + \"1.0.35\",\r\n \"substatuses\": [\r\n {\r\n \"code\": + \"ComponentStatus/ProxyAgentConnectionSummary/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"proxy connection summary is empty\"\r\n },\r\n + \ {\r\n \"code\": \"ComponentStatus/ProxyAgentStatus/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"{\\\"version\\\":\\\"1.0.35\\\",\\\"status\\\":\\\"SUCCESS\\\",\\\"monitorStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Proxy + agent status is running.\\\"},\\\"keyLatchStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Successfully + attest the key and ready to use. - 220\\\",\\\"states\\\":{\\\"imdsRuleId\\\":\\\"uBH/H72QqGFH+J8BZJS2ib+jN6E=\\\",\\\"keyGuid\\\":\\\"d4d7b502-61d7-4623-a2bb-53444f29b55c\\\",\\\"hostGARuleId\\\":\\\"\\\",\\\"wireServerRuleId\\\":\\\"uBH/H72QqGFH+J8BZJS2ib+jN6E=\\\",\\\"secureChannelState\\\":\\\"WireServer + Audit - IMDS Audit - HostGA Audit\\\"}},\\\"ebpfProgramStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Started + Redirector with eBPF maps - 176\\\"},\\\"proxyListenerStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Started + proxy listener, ready to accept request - 71\\\"},\\\"telemetryLoggerStatus\\\":{\\\"status\\\":\\\"UNKNOWN\\\",\\\"message\\\":\\\"Status + unknown.\\\"},\\\"proxyConnectionsCount\\\":0}\"\r\n },\r\n {\r\n + \ \"code\": \"ComponentStatus/ProxyAgentFailedAuthenticationSummary/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"proxy failed auth summary is + empty\"\r\n }\r\n ],\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Update Proxy Agent command output + successfully\",\r\n \"time\": \"2025-09-08T17:17:00+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2024-07-02T09:26:11.9834146+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-09-08T17:16:40.3507844+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 \"timeCreated\": \"2024-07-02T09:25:35.8725272+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-09-08T17:15:27.4447601+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": + \"AzureGuestProxyAgentExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013/extensions/AzureGuestProxyAgentExtension\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"eastus2euap\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"forceUpdateTag\": \"2bea600e-dabe-40a9-97ce-d0dc38f9411d\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.CPlat.ProxyAgent\",\r\n \"type\": + \"ProxyAgentLinux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {}\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4138' + - '8016' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:30 GMT + - Mon, 08 Sep 2025 17:17:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;32 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: FBEC3AB2531040F2967E929A907A6E3C Ref B: PNQ231110907025 Ref C: 2025-09-08T17:17:09Z' status: code: 200 message: '' @@ -7337,41 +9515,42 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic?api-version=2022-01-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic?api-version=2022-01-01 response: body: - string: '{"name":"vm000010VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","etag":"W/\"f9acb86a-73ff-448b-8e43-bdb54c5f571e\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"34797809-f40d-4135-8040-e974453cfa7e","ipConfigurations":[{"name":"ipconfigvm000010","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic/ipConfigurations/ipconfigvm000010","etag":"W/\"f9acb86a-73ff-448b-8e43-bdb54c5f571e\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"foqitoq0huhero44jpslxsiegd.cbnx.internal.cloudapp.net"},"macAddress":"00-22-48-03-89-C3","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus2euap","kind":"Regular"}' + string: '{"name":"vm000013VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","etag":"W/\"e126bd39-e607-4dff-b6df-b2f88351cc7b\"","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"539a4dd7-ac84-49b6-bfc0-41690d470df2","ipConfigurations":[{"name":"ipconfigvm000013","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic/ipConfigurations/ipconfigvm000013","etag":"W/\"e126bd39-e607-4dff-b6df-b2f88351cc7b\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"opsza24lv1oephopte4vxgt5yd.cbnx.internal.cloudapp.net"},"macAddress":"60-45-BD-A4-6A-4A","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus2euap","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '1988' + - '2020' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:31 GMT + - Mon, 08 Sep 2025 17:17:09 GMT etag: - - W/"f9acb86a-73ff-448b-8e43-bdb54c5f571e" + - W/"e126bd39-e607-4dff-b6df-b2f88351cc7b" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d13c394-3cef-4ab1-a604-afeff98f771c - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 411d22e3-663e-4c46-9dd7-7851d14da0f6 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A3A9123E41CB4E97A3A73F9670ABF25B Ref B: PNQ231110908034 Ref C: 2025-09-08T17:17:09Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -7386,38 +9565,39 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP?api-version=2022-01-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"vm000010PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP","etag":"W/\"458d2b32-5599-4aab-a9db-c78054e80731\"","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"279b3085-bc41-4464-ae9a-032a69fae927","ipAddress":"40.89.111.31","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic/ipConfigurations/ipconfigvm000010"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"vm000013PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP","etag":"W/\"7fb9609b-0b23-4ffd-8826-b852e81dc705\"","location":"eastus2euap","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"c7404d8a-bda7-4499-a8ce-367bfa5a32a8","ipAddress":"52.225.178.34","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic/ipConfigurations/ipconfigvm000013"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '795' + - '828' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:33 GMT + - Mon, 08 Sep 2025 17:17:11 GMT etag: - - W/"458d2b32-5599-4aab-a9db-c78054e80731" + - W/"7fb9609b-0b23-4ffd-8826-b852e81dc705" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c60ea7f-c693-4a2f-86b7-61c2c420f6aa - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 2178ac7b-11a9-4844-9876-7dbd1efab24e + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8DFBBDA3B05F4C0482B16230C59AC825 Ref B: PNQ231110908052 Ref C: 2025-09-08T17:17:10Z' status: code: 200 message: OK @@ -7425,7 +9605,7 @@ interactions: body: '{"properties": {"description": "endpointSmbDesc", "endpointType": "SmbMount", "credentials": {"passwordUri": "https://smb-demo-kv.vault.azure.net/secrets/password", "type": "AzureKeyVaultSmb", "usernameUri": "https://smb-demo-kv.vault.azure.net/secrets/username"}, - "host": "40.89.111.31", "shareName": "smbshare000012"}}' + "host": "52.225.178.34", "shareName": "smbshare000015"}}' headers: Accept: - application/json @@ -7436,48 +9616,52 @@ interactions: Connection: - keep-alive Content-Length: - - '320' + - '321' Content-Type: - application/json ParameterSetName: - -g --storage-mover-name -n --description --share-name --username-uri --password-uri --host User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:11.8284292Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '848' + - '833' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:35 GMT + - Mon, 08 Sep 2025 17:17:11 GMT etag: - - '"aa002576-0000-3400-0000-6683c7cb0000"' + - '"790083d0-0000-3300-0000-68bf0f980000"' expires: - '-1' mise-correlation-id: - - d4ebde2e-a326-4367-afa6-3b16b21621e9 + - c1c2aa91-4cea-4855-84fd-46690f3ba201 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/6ac3e756-f39b-4354-81ba-aafe597df2d3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/5e4e6a03-da74-41ea-bdf5-cbe6ce288edd x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: EC48C01CE7E54A2E894F8EF9FAD05CDF Ref B: PNQ231110907025 Ref C: 2025-09-08T17:17:11Z' status: code: 200 message: OK @@ -7495,37 +9679,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:11.8284292Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '848' + - '833' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:37 GMT + - Mon, 08 Sep 2025 17:17:12 GMT etag: - - '"aa002576-0000-3400-0000-6683c7cb0000"' + - '"790083d0-0000-3300-0000-68bf0f980000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/6a9109f2-626a-4cd7-819d-2c03c8418200 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/50c86fbb-23b4-4620-bd22-3a7a0cb519d1 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2DFDD30293FB4BDB99E0967797E730A8 Ref B: PNQ231110909042 Ref C: 2025-09-08T17:17:12Z' status: code: 200 message: OK @@ -7543,44 +9731,48 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --username-uri --password-uri --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:11.8284292Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '848' + - '833' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:39 GMT + - Mon, 08 Sep 2025 17:17:13 GMT etag: - - '"aa002576-0000-3400-0000-6683c7cb0000"' + - '"790083d0-0000-3300-0000-68bf0f980000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/ec9eb7ba-1d57-4387-ab57-bbecdedec0db + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/0eb59a8a-fe73-4f1c-9393-c331596f4d7c x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 536C16839DAA42089BD41F1527817AC6 Ref B: PNQ231110909036 Ref C: 2025-09-08T17:17:13Z' status: code: 200 message: OK - request: body: '{"properties": {"description": "endpointSmbDescUpdate", "endpointType": "SmbMount", "credentials": {"passwordUri": "", "type": "AzureKeyVaultSmb", "usernameUri": - ""}, "host": "40.89.111.31", "shareName": "smbshare000012"}}' + ""}, "host": "52.225.178.34", "shareName": "smbshare000015"}}' headers: Accept: - application/json @@ -7591,47 +9783,51 @@ interactions: Connection: - keep-alive Content-Length: - - '222' + - '223' Content-Type: - application/json ParameterSetName: - -g --storage-mover-name -n --username-uri --password-uri --description User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:14.1261871Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '716' + - '701' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:40 GMT + - Mon, 08 Sep 2025 17:17:13 GMT etag: - - '"aa008276-0000-3400-0000-6683c7d00000"' + - '"790095d0-0000-3300-0000-68bf0f9a0000"' expires: - '-1' mise-correlation-id: - - 313a9004-b614-454a-b170-7f57af933aec + - 71e7965e-d3ea-4903-bfd9-b8d2905c89a6 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/833d4784-9ee2-4d03-8d71-91a9aeeff295 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/1efb1cdd-6a9e-4d2d-9e1a-039a26bf89d6 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B21377A4519848628797B03FB18F6326 Ref B: PNQ231110907025 Ref C: 2025-09-08T17:17:13Z' status: code: 200 message: OK @@ -7649,35 +9845,39 @@ interactions: ParameterSetName: - -g --storage-mover-name User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:10.9864383Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:56.4528926Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:02.0192748Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:55.7349911Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:14.1261871Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '3140' + - '3939' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:41 GMT + - Mon, 08 Sep 2025 17:17:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/f82e91b0-cc30-46c3-bca6-1ff89c1f4d27 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/16810767-42b5-45eb-93e8-051238943cd2 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E915037B26174F72ACEE5B00BB8CCEAB Ref B: PNQ231110907040 Ref C: 2025-09-08T17:17:15Z' status: code: 200 message: OK @@ -7697,9 +9897,9 @@ interactions: ParameterSetName: - -g --storage-mover-name -n -y User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 response: body: string: '' @@ -7709,23 +9909,29 @@ interactions: content-length: - '0' date: - - Tue, 02 Jul 2024 09:26:43 GMT + - Mon, 08 Sep 2025 17:17:16 GMT expires: - '-1' + mise-correlation-id: + - ae9650ce-2143-4322-8262-041fb613b54d pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/c2e49b20-dfaa-40b7-afd7-2909adbb5932 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/1148b2cb-cc4e-4336-90e8-ac59d97ac851 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-deletes: - - '199' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 01EA31CFC4EC4D7494ACEBDADC29EF35 Ref B: PNQ231110907029 Ref C: 2025-09-08T17:17:15Z' status: code: 200 message: OK @@ -7743,35 +9949,39 @@ interactions: ParameterSetName: - -g --storage-mover-name User-Agent: - - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2024-07-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:56.4528926Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:02.0192748Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:14.1261871Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '2452' + - '3265' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2024 09:26:45 GMT + - Mon, 08 Sep 2025 17:17:16 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/e06e2b27-b50a-4519-a45c-22932eb71c8e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/88079430-5cb5-499d-9817-748d0e620778 x-ms-providerhub-traffic: - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0FD5C06020D1406EB84DE7EE05E197C6 Ref B: PNQ231110909029 Ref C: 2025-09-08T17:17:16Z' status: code: 200 message: OK diff --git a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py index 28521637e56..c8b2f42bc63 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py +++ b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py @@ -239,7 +239,6 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) '-n {endpoint_smb} --username-uri "" --password-uri "" --description endpointSmbDescUpdate', checks=[JMESPathCheck('name', self.kwargs.get('endpoint_smb', '')), JMESPathCheck('properties.description', "endpointSmbDescUpdate"), - # JMESPathCheck('properties.credentials.type', "AzureKeyVaultSmb"), JMESPathCheck('properties.credentials.passwordUri', None), JMESPathCheck('properties.credentials.usernameUri', None)]) From 0db5b36e396eb9b3e4b4e9cdc71bd4aa8bfedb38 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 01:21:47 +0530 Subject: [PATCH 06/20] multi cloud connector tests passing --- ...point_multi_cloud_connector_scenarios.yaml | 194 ++++++++++++++++++ .../tests/latest/test_storage_mover.py | 49 ++--- 2 files changed, 220 insertions(+), 23 deletions(-) create mode 100644 src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_multi_cloud_connector_scenarios.yaml diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_multi_cloud_connector_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_multi_cloud_connector_scenarios.yaml new file mode 100644 index 00000000000..3b7e0e99917 --- /dev/null +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_multi_cloud_connector_scenarios.yaml @@ -0,0 +1,194 @@ +interactions: +- request: + body: '{"properties": {"description": "endpointMultiCloudConnectorDesc", "endpointType": "AzureMultiCloudConnector", "awsS3BucketId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aws_536697237310/providers/Microsoft.AWSConnector/s3buckets/c2c-1pb-bucket", + "multiCloudConnectorId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/otendolkarrg/providers/Microsoft.HybridConnectivity/publicCloudConnectors/otendolkarconnector1"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint create-for-multi-cloud-connector + Connection: + - keep-alive + Content-Length: + - '412' + Content-Type: + - application/json + ParameterSetName: + - -g --name --storage-mover-name --multi-cloud-connector-id --aws-s3-bucket-id + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/endpointmulticloudconnector1?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/endpointmulticloudconnector1","name":"endpointmulticloudconnector1","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"exampleuser@microsoft.com","createdByType":"User","createdAt":"2025-09-08T17:47:17.4491546Z","lastModifiedBy":"exampleuser@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:47:27.3665553Z"},"properties":{"multiCloudConnectorId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/otendolkarrg/providers/Microsoft.HybridConnectivity/publicCloudConnectors/otendolkarconnector1","awsS3BucketId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aws_536697237310/providers/Microsoft.AWSConnector/s3buckets/c2c-1pb-bucket","endpointType":"AzureMultiCloudConnector","provisioningState":"Succeeded","description":"endpointMultiCloudConnectorDesc"}}' + headers: + cache-control: + - no-cache + content-length: + - '928' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:57:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: F872CFECC62E47F4BD2B7E4D675986AC Ref B: PNQ231110907042 Ref C: 2025-09-08T17:57:44Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint show + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/endpointmulticloudconnector1?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/endpointmulticloudconnector1","name":"endpointmulticloudconnector1","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"exampleuser@microsoft.com","createdByType":"User","createdAt":"2025-09-08T17:47:17.4491546Z","lastModifiedBy":"exampleuser@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:47:27.3665553Z"},"properties":{"multiCloudConnectorId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/otendolkarrg/providers/Microsoft.HybridConnectivity/publicCloudConnectors/otendolkarconnector1","awsS3BucketId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aws_536697237310/providers/Microsoft.AWSConnector/s3buckets/c2c-1pb-bucket","endpointType":"AzureMultiCloudConnector","provisioningState":"Succeeded","description":"endpointMultiCloudConnectorDesc"}}' + headers: + cache-control: + - no-cache + content-length: + - '928' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 18:27:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: EA47A4EAF6084F59971B2379CD3CFA31 Ref B: PNQ231110906031 Ref C: 2025-09-08T18:27:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint update-for-multi-cloud-connector + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n --description + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/endpointmulticloudconnector1?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/endpointmulticloudconnector1","name":"endpointmulticloudconnector1","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"exampleuser@microsoft.com","createdByType":"User","createdAt":"2025-09-08T17:47:17.4491546Z","lastModifiedBy":"exampleuser@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:47:27.3665553Z"},"properties":{"multiCloudConnectorId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/otendolkarrg/providers/Microsoft.HybridConnectivity/publicCloudConnectors/otendolkarconnector1","awsS3BucketId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aws_536697237310/providers/Microsoft.AWSConnector/s3buckets/c2c-1pb-bucket","endpointType":"AzureMultiCloudConnector","provisioningState":"Succeeded","description":"endpointMultiCloudConnectorDesc"}}' + headers: + cache-control: + - no-cache + content-length: + - '113' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 19:04:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: E898AD8927B849D3B5BF7029F70E1951 Ref B: PNQ231110906023 Ref C: 2025-09-08T19:04:20Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"description": "endpointMultiCloudConnectorDescUpdate", "endpointType": "AzureMultiCloudConnector", "awsS3BucketId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aws_536697237310/providers/Microsoft.AWSConnector/s3buckets/c2c-1pb-bucket", + "multiCloudConnectorId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/otendolkarrg/providers/Microsoft.HybridConnectivity/publicCloudConnectors/otendolkarconnector1"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint update-for-multi-cloud-connector + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n --description + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/endpointmulticloudconnector1?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/endpointmulticloudconnector1","name":"endpointmulticloudconnector1","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"exampleuser@microsoft.com","createdByType":"User","createdAt":"2025-09-08T17:47:17.4491546Z","lastModifiedBy":"exampleuser@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:47:27.3665553Z"},"properties":{"multiCloudConnectorId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/otendolkarrg/providers/Microsoft.HybridConnectivity/publicCloudConnectors/otendolkarconnector1","awsS3BucketId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aws_536697237310/providers/Microsoft.AWSConnector/s3buckets/c2c-1pb-bucket","endpointType":"AzureMultiCloudConnector","provisioningState":"Succeeded","description":"endpointMultiCloudConnectorDescUpdate"}}' + headers: + cache-control: + - no-cache + content-length: + - '113' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 19:04:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: E898AD8927B849D3B5BF7029F70E1951 Ref B: PNQ231110906023 Ref C: 2025-09-08T19:04:20Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py index c8b2f42bc63..f3208a23278 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py +++ b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py @@ -171,29 +171,7 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) '--storage-mover-name {mover_name} ' '-n {endpoint_nfs_file_share} --description endpointNFSFileShareDescUpdate', checks=[JMESPathCheck('name', self.kwargs.get('endpoint_nfs_file_share', '')), - JMESPathCheck('properties.description', "endpointNFSFileShareDescUpdate")]) - - # self.cmd('az arc-multicloud public-cloud-connector create --resource-group {rg} ' - # '--name {multi_cloud_connector} --aws-cloud-profile "{accountId:536697237310,isOrganizationalAccount:False}" ' - # '--host-type AWS --location eastus') - # self.cmd('az storage-mover endpoint create-for-multi-cloud-connector -g {rg} ' - # '--storage-mover-name {mover_name} ' - # '-n {endpoint_multi_cloud_connector} --file-share-name {file_share_name} --storage-account-id {account_id} ' - # '--description endpointMultiCloudConnectorDesc') - # self.cmd('az storage-mover endpoint show -g {rg} --storage-mover-name {mover_name} -n {endpoint_multi_cloud_connector}', - # checks=[JMESPathCheck('name', self.kwargs.get('endpoint_multi_cloud_connector', '')), - # JMESPathCheck('properties.fileShareName', self.kwargs.get('file_share_name', '')), - # JMESPathCheck('properties.endpointType', "AzureStorageNfsFileShare"), - # JMESPathCheck('properties.storageAccountResourceId', self.kwargs.get('account_id', '')), - # JMESPathCheck('properties.description', "endpointNFSFileShareDesc"), - # ]) - - # # update for storage nfs file share - # self.cmd('az storage-mover endpoint update-for-storage-nfs-file-share -g {rg} ' - # '--storage-mover-name {mover_name} ' - # '-n {endpoint_nfs_file_share} --description endpointNFSFileShareDescUpdate', - # checks=[JMESPathCheck('name', self.kwargs.get('endpoint_nfs_file_share', '')), - # JMESPathCheck('properties.description', "endpointNFSFileShareDescUpdate")]) + JMESPathCheck('properties.description', "endpointNFSFileShareDescUpdate")]) # create for nfs mount vm_ip = self.cmd('az vm create -n {vm_nfs_name} -g {rg} --image Ubuntu2204 --size Standard_D4s_v3 --nsg-rule ' @@ -247,6 +225,31 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) self.cmd('az storage-mover endpoint delete -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs} -y') self.cmd('az storage-mover endpoint list -g {rg} --storage-mover-name {mover_name}', checks=[JMESPathCheck('length(@)', 4)]) + + @record_only() + def test_storage_mover_endpoint_multi_cloud_connector_scenarios(self): + self.kwargs.update({ + "rg": "test-storagemover-rg2", + "mover_name": "teststoragemover2", + "endpoint_multi_cloud_connector": "endpointmulticloudconnector1", + "multi_cloud_connector_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/otendolkarrg/providers/Microsoft.HybridConnectivity/publicCloudConnectors/otendolkarconnector1", + "aws_s3_bucket_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aws_536697237310/providers/Microsoft.AWSConnector/s3buckets/c2c-1pb-bucket" + }) + self.cmd('az storage-mover endpoint create-for-multi-cloud-connector -g {rg} --name {endpoint_multi_cloud_connector} ' + '--storage-mover-name {mover_name} --multi-cloud-connector-id {multi_cloud_connector_id} --aws-s3-bucket-id {aws_s3_bucket_id} --description endpointMultiCloudConnectorDesc') + + self.cmd('az storage-mover endpoint show -g {rg} --storage-mover-name {mover_name} -n {endpoint_multi_cloud_connector}', + checks=[JMESPathCheck('name', self.kwargs.get('endpoint_multi_cloud_connector', '')), + JMESPathCheck('properties.endpointType', "AzureMultiCloudConnector"), + JMESPathCheck('properties.awsS3BucketId', self.kwargs.get('aws_s3_bucket_id', '')), + JMESPathCheck('properties.multiCloudConnectorId', self.kwargs.get('multi_cloud_connector_id', '')), + JMESPathCheck('properties.description', "endpointMultiCloudConnectorDesc")]) + + # update for multi cloud connector + self.cmd('az storage-mover endpoint update-for-multi-cloud-connector -g {rg} --storage-mover-name {mover_name} ' + '-n {endpoint_multi_cloud_connector} --description endpointMultiCloudConnectorDescUpdate', + checks=[JMESPathCheck('name', self.kwargs.get('endpoint_multi_cloud_connector', '')), + JMESPathCheck('properties.description', "endpointMultiCloudConnectorDescUpdate")]) @record_only() # need to manually register agent, first create the rg and the storagemover From 65003c761f8d8c777c2b07748e925b5a8a5709f3 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 01:23:32 +0530 Subject: [PATCH 07/20] reverted test_storage_mover_endpoint_scenarios.yaml --- ...test_storage_mover_endpoint_scenarios.yaml | 6408 ++++++----------- 1 file changed, 2099 insertions(+), 4309 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml index 9ad6834e7eb..3225d24ba3e 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml @@ -15,12 +15,12 @@ interactions: ParameterSetName: - -n -g --query -o User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: POST - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2024-01-01&$expand=kerb + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2023-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2025-09-08T17:12:23.6253370Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-09-08T17:12:23.6253370Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2024-07-02T09:22:48.9207673Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-07-02T09:22:48.9207673Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -29,25 +29,21 @@ interactions: content-type: - application/json date: - - Mon, 08 Sep 2025 17:12:45 GMT + - Tue, 02 Jul 2024 09:23:14 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/805d0c1b-e3c1-4f14-bb5b-2fa1bf0ff6a5 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/3e9f4097-bbbf-4d4b-8ee7-1fb11f8f8824 x-ms-ratelimit-remaining-subscription-resource-requests: - - '799' - x-ms-throttling-version: - - v1 - x-msedge-ref: - - 'Ref A: F2EF662689D8456EB5A04DA711E28EFC Ref B: PNQ231110909040 Ref C: 2025-09-08T17:12:44Z' + - '11999' status: code: 200 message: OK @@ -65,35 +61,33 @@ interactions: ParameterSetName: - -n -g --query -o User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2024-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2023-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"keyCreationTime":{"key1":"2025-09-08T17:12:23.6253370Z","key2":"2025-09-08T17:12:23.6253370Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-09-08T17:12:23.6409693Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-09-08T17:12:23.6409693Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-09-08T17:12:23.4847125Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-07-02T09:22:48.9207673Z","key2":"2024-07-02T09:22:48.9207673Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-07-02T09:22:50.3114691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-07-02T09:22:50.3114691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-07-02T09:22:48.7957757Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1353' + - '1321' content-type: - application/json date: - - Mon, 08 Sep 2025 17:12:45 GMT + - Tue, 02 Jul 2024 09:23:15 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 78A51805A4E24DAB9F92411A8340C0A3 Ref B: PNQ231110909025 Ref C: 2025-09-08T17:12:46Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK @@ -116,45 +110,41 @@ interactions: ParameterSetName: - -g -n -l --tags --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003","name":"storage-mover000003","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1","Mover":"Dev","team":"Discovery"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:49.4673845Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:49.4673845Z"},"properties":{"description":"MoverDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003","name":"storage-mover000003","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:19.2132543Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:19.2132543Z"},"properties":{"description":"MoverDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '614' + - '597' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:12:49 GMT + - Tue, 02 Jul 2024 09:23:20 GMT etag: - - '"3300584a-0000-3300-0000-68bf0e910000"' + - '"0900e939-0000-3400-0000-6683c7080000"' expires: - '-1' mise-correlation-id: - - 17c473cd-ef9b-4488-a512-f6c6e788c574 + - 9b467a2c-d3cc-4886-8822-1d46d49e63a5 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/91c90872-fbf3-4207-87bd-5828264f28ca + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/fa309541-103c-4911-b66a-b2ae8e5cfc28 x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: E71D8B88C5DD465089110D6592B44745 Ref B: PNQ231110906042 Ref C: 2025-09-08T17:12:47Z' + - '199' status: code: 200 message: OK @@ -174,9 +164,9 @@ interactions: ParameterSetName: - -n --account-name --account-key User-Agent: - - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-storage-blob/12.16.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) x-ms-date: - - Mon, 08 Sep 2025 17:12:47 GMT + - Tue, 02 Jul 2024 09:23:21 GMT x-ms-version: - '2022-11-02' method: PUT @@ -188,11 +178,11 @@ interactions: content-length: - '0' date: - - Mon, 08 Sep 2025 17:12:51 GMT + - Tue, 02 Jul 2024 09:23:21 GMT etag: - - '"0x8DDEEFAF18662C0"' + - '"0x8DC9A789E464CA6"' last-modified: - - Mon, 08 Sep 2025 17:12:51 GMT + - Tue, 02 Jul 2024 09:23:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -219,45 +209,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --container-name --storage-account-id --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:52.7185008Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '836' + - '852' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:12:52 GMT + - Tue, 02 Jul 2024 09:23:24 GMT etag: - - '"79008ec9-0000-3300-0000-68bf0e950000"' + - '"aa00596e-0000-3400-0000-6683c70d0000"' expires: - '-1' mise-correlation-id: - - 8365ed3e-0ef7-49e3-bfaa-4e9c7eeb3616 + - 554b872c-55f7-4abf-b861-542ad5b28698 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/17a3cfbf-781c-4e78-84aa-f286f7b700eb + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/9bc8cd3c-ac4a-4504-87c1-785924659a17 x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 8E81568FB4874217866634885984DC45 Ref B: PNQ231110906034 Ref C: 2025-09-08T17:12:52Z' + - '199' status: code: 200 message: OK @@ -275,41 +261,37 @@ interactions: ParameterSetName: - -g --storage-mover-name -n User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:52.7185008Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '836' + - '852' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:12:53 GMT + - Tue, 02 Jul 2024 09:23:27 GMT etag: - - '"79008ec9-0000-3300-0000-68bf0e950000"' + - '"aa00596e-0000-3400-0000-6683c70d0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/2acd6176-9164-4af5-b901-c40a59a8af52 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/a6cdcaaf-caaf-4f27-a2dd-f15a1098f884 x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 44207A6FA8AC410A8A15E22C079446E9 Ref B: PNQ231110909052 Ref C: 2025-09-08T17:12:53Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -327,41 +309,37 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:52.7185008Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '836' + - '852' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:12:55 GMT + - Tue, 02 Jul 2024 09:23:29 GMT etag: - - '"79008ec9-0000-3300-0000-68bf0e950000"' + - '"aa00596e-0000-3400-0000-6683c70d0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/e182cba8-ba7a-46e9-be44-a7bada009d48 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/555eba5e-73be-494b-8beb-5ca76227676a x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 46ABC36BC8584AB2AB539EB9FC6C25CC Ref B: PNQ231110906031 Ref C: 2025-09-08T17:12:54Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -384,45 +362,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:56.4528926Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '842' + - '858' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:12:56 GMT + - Tue, 02 Jul 2024 09:23:30 GMT etag: - - '"7900a2c9-0000-3300-0000-68bf0e980000"' + - '"aa00626e-0000-3400-0000-6683c7120000"' expires: - '-1' mise-correlation-id: - - 9aa37b16-b434-472d-9564-c56f20ebd7b5 + - 5ddec9cd-ee83-427a-9835-2bd527a74612 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/23e6c091-2d40-492e-bc69-e77e2db6b2de + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/5509b4f6-1385-4115-bfba-1247efbdfe10 x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 473121B7171B44C3A7B2D5B7CBA0F458 Ref B: PNQ231110907060 Ref C: 2025-09-08T17:12:55Z' + - '199' status: code: 200 message: OK @@ -442,13 +416,14 @@ interactions: ParameterSetName: - -n --account-name --account-key User-Agent: - - AZURECLI/2.77.0 azsdk-python-storage-file-share/12.21.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-storage-file-share/12.12.0b1 Python/3.9.13 + (Windows-10-10.0.19045-SP0) x-ms-date: - - Mon, 08 Sep 2025 17:12:53 GMT + - Tue, 02 Jul 2024 09:23:30 GMT x-ms-version: - - '2025-05-05' + - '2022-11-02' method: PUT - uri: https://clitest000002.file.core.windows.net/fileshare000014?restype=share + uri: https://clitest000002.file.core.windows.net/fileshare000011?restype=share response: body: string: '' @@ -456,21 +431,21 @@ interactions: content-length: - '0' date: - - Mon, 08 Sep 2025 17:12:57 GMT + - Tue, 02 Jul 2024 09:23:31 GMT etag: - - '"0x8DDEEFAF56631FF"' + - '"0x8DC9A78A420F7FD"' last-modified: - - Mon, 08 Sep 2025 17:12:58 GMT + - Tue, 02 Jul 2024 09:23:32 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2025-05-05' + - '2022-11-02' status: code: 201 message: Created - request: body: '{"properties": {"description": "endpointFileShareDesc", "endpointType": - "AzureStorageSmbFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": + "AzureStorageSmbFileShare", "fileShareName": "fileshare000011", "storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' headers: Accept: @@ -488,45 +463,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --file-share-name --storage-account-id --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:58.8748682Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '842' + - '858' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:12:58 GMT + - Tue, 02 Jul 2024 09:23:34 GMT etag: - - '"7900b3c9-0000-3300-0000-68bf0e9b0000"' + - '"aa00f06e-0000-3400-0000-6683c7160000"' expires: - '-1' mise-correlation-id: - - b4c5fe0a-1c71-4589-a83c-227753ed2ee7 + - b2663fbc-3de6-4fb5-bf8f-4c4e300ec494 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/e940dece-9d72-4496-b540-9c3dda47c386 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/f8941e34-7f24-4043-8647-966076af064f x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '798' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 509A2C993FFA4F1598B65F9F905C9D64 Ref B: PNQ231110909034 Ref C: 2025-09-08T17:12:58Z' + - '199' status: code: 200 message: OK @@ -544,41 +515,37 @@ interactions: ParameterSetName: - -g --storage-mover-name -n User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:58.8748682Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '842' + - '858' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:12:59 GMT + - Tue, 02 Jul 2024 09:23:36 GMT etag: - - '"7900b3c9-0000-3300-0000-68bf0e9b0000"' + - '"aa00f06e-0000-3400-0000-6683c7160000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/466ce187-b2b9-4471-a93b-7dfad8408e03 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/95870210-ba88-49b2-ac10-ba8312ee21d5 x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 45D459AE4BB14AD2A495187311080AFF Ref B: PNQ231110906052 Ref C: 2025-09-08T17:12:59Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -596,47 +563,43 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:58.8748682Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '842' + - '858' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:00 GMT + - Tue, 02 Jul 2024 09:23:38 GMT etag: - - '"7900b3c9-0000-3300-0000-68bf0e9b0000"' + - '"aa00f06e-0000-3400-0000-6683c7160000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/934baff1-780d-4384-aa3c-12c515151d63 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/8f0914d8-f9d2-4766-b048-fcfa96da25be x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 9EAD09B165144D27A5D13246225D80F7 Ref B: PNQ231110909036 Ref C: 2025-09-08T17:13:00Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK - request: body: '{"properties": {"description": "endpointFileShareDescUpdate", "endpointType": - "AzureStorageSmbFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": + "AzureStorageSmbFileShare", "fileShareName": "fileshare000011", "storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' headers: Accept: @@ -654,273 +617,41 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) - method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:02.0192748Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '848' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 08 Sep 2025 17:13:02 GMT - etag: - - '"7900ccc9-0000-3300-0000-68bf0e9e0000"' - expires: - - '-1' - mise-correlation-id: - - 84279522-6fcd-4a0e-a037-ea77a3e44a37 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/d5af5840-6b42-4f42-91cd-823ce0dde134 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 3B127907CDFA4A6F86A96790E7563B09 Ref B: PNQ231110908062 Ref C: 2025-09-08T17:13:00Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"description": "endpointNFSFileShareDesc", "endpointType": - "AzureStorageNfsFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage-mover endpoint create-for-storage-nfs-file-share - Connection: - - keep-alive - Content-Length: - - '312' - Content-Type: - - application/json - ParameterSetName: - - -g --storage-mover-name -n --file-share-name --storage-account-id --description - User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) - method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '853' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 08 Sep 2025 17:13:03 GMT - etag: - - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' - expires: - - '-1' - mise-correlation-id: - - dd174ca8-0186-4593-b1df-8617104537fe - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/8cda0051-2980-4684-a482-7508da9c3ed5 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: E2BCB33E44D34F08949F16D5F40BA1E5 Ref B: PNQ231110909042 Ref C: 2025-09-08T17:13:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage-mover endpoint show - Connection: - - keep-alive - ParameterSetName: - - -g --storage-mover-name -n - User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '853' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 08 Sep 2025 17:13:03 GMT - etag: - - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/5d6bcfcf-ac5c-41aa-948d-ce0e58f4d1b4 - x-ms-providerhub-traffic: - - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: B4738D12CBEE49DEA82DFA39A7D508B3 Ref B: PNQ231110907031 Ref C: 2025-09-08T17:13:04Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage-mover endpoint update-for-storage-nfs-file-share - Connection: - - keep-alive - ParameterSetName: - - -g --storage-mover-name -n --description - User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '853' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 08 Sep 2025 17:13:04 GMT - etag: - - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/23adba93-5eb3-4379-9d53-3ec335d53db5 - x-ms-providerhub-traffic: - - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 82A023A474584FC8AFD53FD5B5E7734B Ref B: PNQ231110909034 Ref C: 2025-09-08T17:13:04Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"description": "endpointNFSFileShareDescUpdate", "endpointType": - "AzureStorageNfsFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage-mover endpoint update-for-storage-nfs-file-share - Connection: - - keep-alive - Content-Length: - - '318' - Content-Type: - - application/json - ParameterSetName: - - -g --storage-mover-name -n --description - User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '859' + - '864' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:05 GMT + - Tue, 02 Jul 2024 09:23:38 GMT etag: - - '"7900e7c9-0000-3300-0000-68bf0ea20000"' + - '"aa005e6f-0000-3400-0000-6683c71b0000"' expires: - '-1' mise-correlation-id: - - 21fb7ae4-6472-4f52-8a98-563c9f31bae3 + - 519521ab-1e50-4c21-badc-a77b63ff5675 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/954d41d0-c312-4dce-8fe8-68c94a248ac2 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/a58756b1-fc58-4c28-b93c-69c156bbb538 x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: E02679798B10465DAFECC530B3BB7EE9 Ref B: PNQ231110909029 Ref C: 2025-09-08T17:13:05Z' + - '199' status: code: 200 message: OK @@ -938,35 +669,31 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2025-09-08T17:12:10Z","module":"storage-mover"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2024-07-02T09:22:38Z","module":"storage-mover","DateCreated":"2024-07-02T09:22:44Z","Creator":"zhiyihuang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '387' + - '461' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:08 GMT + - Tue, 02 Jul 2024 09:23:42 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 1843430FB19E45BB833F6F0E4BDD91BB Ref B: PNQ231110909025 Ref C: 2025-09-08T17:13:08Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -980,9 +707,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.4 + - python-requests/2.32.0 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: body: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n @@ -1028,6 +755,9 @@ interactions: \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: @@ -1039,7 +769,7 @@ interactions: connection: - keep-alive content-length: - - '3384' + - '3615' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -1047,35 +777,35 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Mon, 08 Sep 2025 17:13:09 GMT + - Tue, 02 Jul 2024 09:23:42 GMT etag: - - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2" + - W/"9fee27d398b0211e374a0f0e8e79c9b3a0342cfa43466b26b8548409639c8c17" expires: - - Mon, 08 Sep 2025 17:18:09 GMT + - Tue, 02 Jul 2024 09:28:42 GMT source-age: - - '0' + - '150' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding,Origin via: - 1.1 varnish x-cache: - - MISS + - HIT x-cache-hits: - - '0' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 5fd769967b5e75b63853c0505e2ef7a334d22e8a + - ab22472429ed6a10db3a2157ae33bdd7433c320f x-frame-options: - deny x-github-request-id: - - A29E:23FABD:2169F86:2798B64:68BF0EA5 + - 581E:AA2A7:6885C0:7F60A9:66834B25 x-served-by: - - cache-sin-wsss1830063-SIN + - cache-qpg120102-QPG x-timer: - - S1757351589.372998,VS0,VE278 + - S1719912222.447869,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -1095,13 +825,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n \ }\r\n]" headers: cache-control: @@ -1111,25 +841,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:09 GMT + - Tue, 02 Jul 2024 09:23:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/b9132662-0fa3-458f-9324-8179d8beb2cc + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/6a66e763-b4ad-4ed6-a91d-e248b35e6150 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 852AFCAAFCC44708A45FE2B0AC817097 Ref B: PNQ231110906034 Ref C: 2025-09-08T17:13:09Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -1147,9 +876,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -1164,36 +893,33 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n + \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" headers: cache-control: - no-cache content-length: - - '1216' + - '1168' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:09 GMT + - Tue, 02 Jul 2024 09:23:44 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/2b51f590-865f-482c-8aa6-fa3ab033cf15 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/faa3d188-70fa-4f28-8c39-7727b8a24c34 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 8166275DAE33438D8E02443F38518CAB Ref B: PNQ231110909034 Ref C: 2025-09-08T17:13:10Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -1211,9 +937,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: string: '{"value":[]}' @@ -1225,21 +951,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:10 GMT + - Tue, 02 Jul 2024 09:23:45 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 85514DD3498B46E6AC684EF463009AA1 Ref B: PNQ231110907060 Ref C: 2025-09-08T17:13:10Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK @@ -1257,9 +979,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-03-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n @@ -2150,9 +1872,6 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_E64bs_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96bs_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_E112ibs_v5\",\r\n \"numberOfCores\": 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n @@ -2177,9 +1896,6 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_E64bds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96bds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_E112ibds_v5\",\r\n \"numberOfCores\": 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n @@ -2264,50 +1980,236 @@ interactions: \ {\r\n \"name\": \"Standard_B32s_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": @@ -2357,12 +2259,6 @@ interactions: 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_8_v2\",\r\n \"numberOfCores\": 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4194304,\r\n \"memoryInMB\": 7782400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_9_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 8773632,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_10_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 9723904,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n @@ -2675,425 +2571,353 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_E112iads_v5\",\r\n \"numberOfCores\": 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC2as_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC4as_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC8as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC16as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC32as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC48as_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC64as_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC96as_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2eds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC2ads_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 48128,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4eds_v5\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4ads_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 107520,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8eds_v5\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8ads_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 232448,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16eds_v5\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16ads_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 474112,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32eds_v5\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32ads_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 957440,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48eds_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48ads_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1440768,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64eds_v5\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64ads_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96eds_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96ads_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2es_v5\",\r\n \"numberOfCores\": + 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2as_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC4es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC4as_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC8as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC16as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC20as_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48es_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48as_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64es_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC64as_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128es_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128ies_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2eds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC96as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96ias_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2ads_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 48128,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4eds_v5\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4ads_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 107520,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8eds_v5\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8ads_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 232448,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16eds_v5\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16ads_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 474112,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32eds_v5\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC20ads_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32ads_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 957440,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48eds_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48ads_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1440768,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64eds_v5\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64ads_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128eds_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128ieds_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ads_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ads_v6\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96iads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4as_cc_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ads_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC8as_cc_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ads_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC16as_cc_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ads_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC32as_cc_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ads_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC48as_cc_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ads_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC64as_cc_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ads_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC96as_cc_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ads_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ads_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ads_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ads_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ads_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ads_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ads_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ads_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ads_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 5765120,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS1\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4-4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4-8\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5-8\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5-16\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC4ads_cc_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8as_v6\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8ads_cc_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16as_v6\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16ads_cc_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32as_v6\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32ads_cc_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v6\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48ads_cc_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v6\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64ads_cc_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v6\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96ads_cc_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4as_v6\",\r\n \"numberOfCores\": + 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4as_cc_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC8as_cc_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC16as_cc_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC20as_cc_v5\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC32as_cc_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v6\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48as_cc_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC64as_cc_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC96as_cc_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2als_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4als_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC4ads_cc_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8als_v6\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8ads_cc_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16als_v6\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16ads_cc_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32als_v6\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC20ads_cc_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48als_v6\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64als_v6\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96als_v6\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2alds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4alds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8alds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16alds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32alds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48alds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64alds_v6\",\r\n \"numberOfCores\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96alds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2as_v6\",\r\n \"numberOfCores\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2es_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_F4as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC4es_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_F8as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC8es_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_F16as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC16es_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_F32as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_DC32es_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F48as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC48es_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F64as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC64es_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2als_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC96es_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2eds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_F4als_v6\",\r\n \"numberOfCores\": + 48128,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4eds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_F8als_v6\",\r\n \"numberOfCores\": + 107520,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8eds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_F16als_v6\",\r\n \"numberOfCores\": + 232448,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16eds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_F32als_v6\",\r\n \"numberOfCores\": + 474112,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32eds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_F48als_v6\",\r\n \"numberOfCores\": + 957440,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48eds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_F64als_v6\",\r\n \"numberOfCores\": + 1440768,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64eds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2ams_v6\",\r\n \"numberOfCores\": + 2890752,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96eds_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2es_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_F4ams_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC4es_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_F8ams_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC8es_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_F16ams_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_EC16es_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F32ams_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC32es_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F48ams_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC48es_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F64ams_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_EC64es_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + \ },\r\n {\r\n \"name\": \"Standard_EC128es_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128ies_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2eds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 48128,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4eds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 107520,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8eds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 232448,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16eds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 474112,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32eds_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 957440,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48eds_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1440768,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64eds_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128eds_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128ieds_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": @@ -3152,1077 +2976,177 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_L80as_v3\",\r\n \"numberOfCores\": 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4as_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8as_v5\",\r\n \"numberOfCores\": + 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16as_v5\",\r\n \"numberOfCores\": + 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32as_v5\",\r\n \"numberOfCores\": + 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7340032,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14680064,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64as_v5\",\r\n \"numberOfCores\": + 1048576,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ads_v5\",\r\n \"numberOfCores\": + 2097152,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64ms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64s_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M128s_v2\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M192is_v2\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32dms_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64dms_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ds_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ds_v2\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M192ids_v2\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7340032,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14680064,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M8-2ms\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ads_v5\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_M8-4ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_M16-4ms\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ads_v5\",\r\n \"numberOfCores\": + 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_M16-8ms\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32-8ms\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64ads_v5\",\r\n \"numberOfCores\": + 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32-16ms\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC4as_v5\",\r\n \"numberOfCores\": + 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms_v2\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M192ims_v2\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M128dms_v2\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M192idms_v2\",\r\n \"numberOfCores\": + 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8as_v5\",\r\n \"numberOfCores\": + 90112,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_v5\",\r\n \"numberOfCores\": + 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV16as_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_v5\",\r\n \"numberOfCores\": + 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_v5\",\r\n \"numberOfCores\": + 720896,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND96is_MI300X_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ias_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND96isr_MI300X_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96iads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4as_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8as_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16as_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32as_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48as_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64as_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96as_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ads_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ads_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ads_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ads_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4as_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8as_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ls_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ls_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ls_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ls_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ls_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48ls_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64ls_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ls_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128ls_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2lds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4lds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8lds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16lds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32lds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48lds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64lds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96lds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128lds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128-32s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128-64s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128-32ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128-64ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX2ms_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 43008,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX4-2ms_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX4ms_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX8-2ms_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX8-4ms_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX8ms_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX12-6ms_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX12ms_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16-4ms_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16-8ms_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16ms_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24-6ms_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24-12ms_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24ms_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32-8ms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32-16ms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32ms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48-12ms_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48-24ms_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48ms_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64-16ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64-32ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX2mds_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 43008,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX4-2mds_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX4mds_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX8-2mds_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX8-4mds_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX8mds_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX12-6mds_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX12mds_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16-4mds_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16-8mds_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16mds_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24-6mds_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24-12mds_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24mds_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32-8mds_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32-16mds_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32mds_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48-12mds_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48-24mds_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48mds_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64-16mds_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64-32mds_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64mds_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E192is_v6\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E192ids_v6\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L2s_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_L4s_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_L8s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_L16s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L96s_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96-24ms_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96-48ms_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96ms_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96-24mds_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96-48mds_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96mds_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": 64,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7340032,\r\n - \ \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": 128,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14680064,\r\n - \ \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": 32,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1048576,\r\n - \ \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": 32,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1048576,\r\n - \ \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": 64,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2097152,\r\n - \ \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2097152,\r\n - \ \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4194304,\r\n - \ \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64s_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M128s_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M192is_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32dms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64dms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ds_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ds_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M192ids_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7340032,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14680064,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M8-2ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M8-4ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16-4ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16-8ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32-8ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32-16ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M192ims_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M128dms_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M192idms_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 90112,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV16as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 720896,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96pls_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2plds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4plds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8plds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16plds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32plds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48plds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64plds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96plds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4pds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8pds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16pds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + 0,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": 16\r\n \ }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '202794' + - '148107' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:11 GMT + - Tue, 02 Jul 2024 09:23:47 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/0b50df78-256e-4a43-9077-7ab5bc9123bd + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/db5ebdf7-fd25-4c5e-bf3f-d3c0a0581f1b x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetSubscriptionInfoSubscriptionMaximum;359 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: DA9017A143144D3A80A77170CA95688C Ref B: PNQ231110906040 Ref C: 2025-09-08T17:13:11Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: '' @@ -4236,9 +3160,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.4 + - python-requests/2.32.0 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: body: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n @@ -4284,6 +3208,9 @@ interactions: \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: @@ -4295,7 +3222,7 @@ interactions: connection: - keep-alive content-length: - - '3384' + - '3615' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -4303,17 +3230,17 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Mon, 08 Sep 2025 17:13:12 GMT + - Tue, 02 Jul 2024 09:23:49 GMT etag: - - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2" + - W/"9fee27d398b0211e374a0f0e8e79c9b3a0342cfa43466b26b8548409639c8c17" expires: - - Mon, 08 Sep 2025 17:18:12 GMT + - Tue, 02 Jul 2024 09:28:49 GMT source-age: - - '2' + - '157' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding,Origin via: - 1.1 varnish x-cache: @@ -4323,15 +3250,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 2395309eeaee2bc797cf53515678b63c3bc20994 + - 756f8e672252aa5b4ffc20c5a5d0a14fea13daf4 x-frame-options: - deny x-github-request-id: - - A29E:23FABD:2169F86:2798B64:68BF0EA5 + - 581E:AA2A7:6885C0:7F60A9:66834B25 x-served-by: - - cache-sin-wsss1830087-SIN + - cache-qpg1248-QPG x-timer: - - S1757351592.100335,VS0,VE1 + - S1719912229.281676,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -4351,13 +3278,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n \ }\r\n]" headers: cache-control: @@ -4367,25 +3294,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:12 GMT + - Tue, 02 Jul 2024 09:23:50 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/a436da40-42d0-407c-83cf-b18fc7263bbe + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/d3bf1a8f-8933-4ee7-a1a5-f244ea135aac x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: F3F62E733FB44E98B4DAAF50EB6F696A Ref B: PNQ231110907060 Ref C: 2025-09-08T17:13:12Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -4403,9 +3329,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -4420,36 +3346,34 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n + \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" headers: cache-control: - no-cache content-length: - - '1216' + - '1168' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:12 GMT + - Tue, 02 Jul 2024 09:23:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/4c7d6c9a-d519-43ff-a058-e8afdcb68703 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/c71da78d-d590-49fc-aed9-163a5f906c71 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: CC4D4200D97F4796B6C94EA3CDF3FB35 Ref B: PNQ231110909025 Ref C: 2025-09-08T17:13:12Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -4467,13 +3391,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n \ }\r\n]" headers: cache-control: @@ -4483,25 +3407,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:12 GMT + - Tue, 02 Jul 2024 09:23:53 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/cb58adeb-6523-41d7-830d-0e0662fdcdc6 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/65d1f2e5-d1e9-464b-9b66-252a092336da x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: E1B97D42D6B94BBD8A34808111E543EC Ref B: PNQ231110908042 Ref C: 2025-09-08T17:13:13Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -4519,9 +3442,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -4536,68 +3459,66 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n + \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" headers: cache-control: - no-cache content-length: - - '1216' + - '1168' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:13 GMT + - Tue, 02 Jul 2024 09:23:54 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/ff63b803-5592-472b-9fb9-70cf405472be + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/c9cd6d74-358f-4a08-9b2e-c4048bee2c22 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 2D6710E5163A40F2A13ACDC6A1811A13 Ref B: PNQ231110907031 Ref C: 2025-09-08T17:13:13Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' 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": "vm000012VNET", "type": "Microsoft.Network/virtualNetworks", "location": + [{"name": "vm000009VNET", "type": "Microsoft.Network/virtualNetworks", "location": "eastus2euap", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": - "vm000012Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": - "Microsoft.Network/networkSecurityGroups", "name": "vm000012NSG", "apiVersion": + "vm000009Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": + "Microsoft.Network/networkSecurityGroups", "name": "vm000009NSG", "apiVersion": "2015-06-15", "location": "eastus2euap", "tags": {}, "dependsOn": []}, {"apiVersion": - "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vm000012PublicIP", + "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vm000009PublicIP", "location": "eastus2euap", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type": - "Microsoft.Network/networkInterfaces", "name": "vm000012VMNic", "location": - "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm000012VNET", - "Microsoft.Network/networkSecurityGroups/vm000012NSG", "Microsoft.Network/publicIpAddresses/vm000012PublicIP"], - "properties": {"ipConfigurations": [{"name": "ipconfigvm000012", "properties": - {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG"}}}, - {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm000012", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000012VMNic"], + "Microsoft.Network/networkInterfaces", "name": "vm000009VMNic", "location": + "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm000009VNET", + "Microsoft.Network/networkSecurityGroups/vm000009NSG", "Microsoft.Network/publicIpAddresses/vm000009PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm000009", "properties": + {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG"}}}, + {"apiVersion": "2024-03-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm000009", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000009VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_D4s_v3"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic", + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": - "vm000012", "adminUsername": "ubuntuuser", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD2YWxGLzUtVKWysDXWnv+cLEqKnPsOsyKBriQ5/6JPNU6+ROGEPh6HOwSe8f+phhQOhOL4feOsyebPHAb3/0peeRohvXMoR44lFUOkTPzv3dF7mSNx+DH8IHRMDEUisQxyBNzgevIqjppXyFbVCtBjNZbXOCjAQajl4MTMUS53DMB5v1Ut7+TTm9r1Q8vySD6q7fY/2HY/Li0aJS0hbehccFTxsy4YXd0c/Srmoc6QfJCzx6APkOEaf+1C8K6uFwdYW7tPTAP1Iw6jET5o+Fe7ON11PuxH/iUfD5VzFVPzkiw1Ob5UE08f36VvUMywOUtbq104bR2R5YMqQb/wCcX/", + "vm000009", "adminUsername": "ubuntuuser", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDy4KT6QZuyFbmWDdF/Vdc7B8PzU/TrgtnZNHofoVGpHUY9emsn6t3OhrT8y+he9stKP+CfcOEhR38Rn8gCJXdeo6VX3OyeCrkPMw+PZEj+TJi3Yp+N/BXritww+I8HFF+vihoKBPFP3DQSeq7VMQWGfFmf67Dm0r2F8CLvnqWPcrBx14GelF4vg3P3dDltHh9ZedEcNYA1b0+BcupL8249JVsv38oSMw3bTxTVzFzLY0KCgQno2HOt0VsZSvIp76UO4io4msPdmJm1NLIJ4s5YK6lHdnp8w+kuZi/pZyQx8GKbKjEqaxQaPDy5tHE5ohvIxqwZcewN7rlUJ3ZVYibd", "path": "/home/ubuntuuser/.ssh/authorized_keys"}]}}}, "securityProfile": {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": true, "vTpmEnabled": true}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' @@ -4617,90 +3538,40 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) - method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp","name":"vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14892606981901438165","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-09-08T17:13:15.3534656Z","duration":"PT0.0001129S","correlationId":"ae1903f4-0c9b-4a9d-b1de-41fe7b279231","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000012VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000012NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000012PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000012VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000012VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000012"}]}}' - headers: - azure-asyncoperation: - - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k - cache-control: - - no-cache - content-length: - - '2415' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 08 Sep 2025 17:13:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-deployment-engine-version: - - 1.473.0 - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 0539BF798BF84FC3A2E15EE5E645E81A Ref B: PNQ231110909054 Ref C: 2025-09-08T17:13:14Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys - User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"status":"Running"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","name":"vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"931673041568542476","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-07-02T09:23:58.6579238Z","duration":"PT0.0004225S","correlationId":"4cea310b-61bf-4182-a192-b03918c952ac","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000009VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000009PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000009"}]}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2/operationStatuses/08584816946486801966?api-version=2022-09-01 cache-control: - no-cache content-length: - - '20' + - '2413' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:16 GMT + - Tue, 02 Jul 2024 09:23:58 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: B2AC33166D484E5BB9E49E8D7A95AA58 Ref B: PNQ231110909052 Ref C: 2025-09-08T17:13:17Z' + x-ms-deployment-engine-version: + - 1.24.0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -4715,9 +3586,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -4729,21 +3600,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:13:47 GMT + - Tue, 02 Jul 2024 09:23:58 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 5D29B0AC10F3442D88050B92C2306878 Ref B: PNQ231110909029 Ref C: 2025-09-08T17:13:47Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -4761,9 +3628,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -4775,21 +3642,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:18 GMT + - Tue, 02 Jul 2024 09:24:28 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: B6CF069EDEDF456F99A9AF798D0DC6BA Ref B: PNQ231110909029 Ref C: 2025-09-08T17:14:18Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -4807,9 +3670,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442552901157420?api-version=2024-11-01&t=638929483966973302&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=N5EIdRD1ejnAK4D0XwFzstz7dKKCFMiFlRnYx_jS3-XpHX1zGJw0wxiB_SPNz7I0SwYW4VI_4hCHaY4V_aidfHPm7h90tJl_A7EsH33XMoY4j8UoJLvfop0AxF3H-jWg2_F08EBdvRl9MkpHX4XPPAiH5m-FuEAbMU2mZaDrR7QbDIzRzLAYSxIEd9LMk5EdT_Wa43YWKUy5kX_qVhvKa2PiskFxhOgrFzEj98BMaad1ptrgQSWqIwVNF3F9OD1t_aHHmOBviZ8IWQWQlXtEqp0DgBrD4eR9VX0Jyou9KT8rSJj3B4vPkuPWu2W3oUBRjsMTDt5Yy_xOH2BE5RJkSg&h=AyjbrL-ff0UoORE5NKDv-ybaFLdps3c3aqJRqorG17k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -4821,21 +3684,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:49 GMT + - Tue, 02 Jul 2024 09:24:59 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 9B9E07FC1DDB4897B3C565B3C24A41D4 Ref B: PNQ231110909060 Ref C: 2025-09-08T17:14:49Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -4853,35 +3712,31 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp","name":"vm_deploy_HIWZke2Hg7R6kyB7fGWGFH8eSi3NHezp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14892606981901438165","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-09-08T17:14:48.4881245Z","duration":"PT1M33.1346589S","correlationId":"ae1903f4-0c9b-4a9d-b1de-41fe7b279231","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000012VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000012NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000012PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000012VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000012VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000012"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","name":"vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"931673041568542476","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-07-02T09:24:41.3604691Z","duration":"PT42.7029678S","correlationId":"4cea310b-61bf-4182-a192-b03918c952ac","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000009VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000009PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000009"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3212' + - '3208' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:50 GMT + - Tue, 02 Jul 2024 09:24:59 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 9C156EEA2B784D82A395E8C5161131BC Ref B: PNQ231110906029 Ref C: 2025-09-08T17:14:50Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK @@ -4899,134 +3754,86 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012?$expand=instanceView&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009?$expand=instanceView&api-version=2024-03-01 response: body: - string: "{\r\n \"name\": \"vm000012\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012\",\r\n + string: "{\r\n \"name\": \"vm000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"Mover\": \"Dev\",\r\n - \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\",\r\n \"team\": \"Discovery\"\r\n },\r\n \"identity\": {\r\n - \ \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a8f6b4e4-98fe-4163-a6be-697462a6a1e3\",\r\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"properties\": - {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"9013c8fe-708b-4d2a-b69e-48308446c541\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n - \ \"sku\": \"22_04-lts-gen2\",\r\n \"version\": \"latest\",\r\n - \ \"exactVersion\": \"22.04.202507300\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm000012_OsDisk_1_facbb9a03b0b4f4a94679b5116e24f5b\",\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/vm000012_OsDisk_1_facbb9a03b0b4f4a94679b5116e24f5b\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_D4s_v3\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"3db8d79b-06ab-461e-bb4b-c2cfed06590a\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202406140\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm000009_OsDisk_1_47fac15982a94280930e702de11c1a33\",\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/vm000009_OsDisk_1_47fac15982a94280930e702de11c1a33\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": - \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm000012\",\r\n + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm000009\",\r\n \ \"adminUsername\": \"ubuntuuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/ubuntuuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQD2YWxGLzUtVKWysDXWnv+cLEqKnPsOsyKBriQ5/6JPNU6+ROGEPh6HOwSe8f+phhQOhOL4feOsyebPHAb3/0peeRohvXMoR44lFUOkTPzv3dF7mSNx+DH8IHRMDEUisQxyBNzgevIqjppXyFbVCtBjNZbXOCjAQajl4MTMUS53DMB5v1Ut7+TTm9r1Q8vySD6q7fY/2HY/Li0aJS0hbehccFTxsy4YXd0c/Srmoc6QfJCzx6APkOEaf+1C8K6uFwdYW7tPTAP1Iw6jET5o+Fe7ON11PuxH/iUfD5VzFVPzkiw1Ob5UE08f36VvUMywOUtbq104bR2R5YMqQb/wCcX/\"\r\n + AAAAB3NzaC1yc2EAAAADAQABAAABAQDy4KT6QZuyFbmWDdF/Vdc7B8PzU/TrgtnZNHofoVGpHUY9emsn6t3OhrT8y+he9stKP+CfcOEhR38Rn8gCJXdeo6VX3OyeCrkPMw+PZEj+TJi3Yp+N/BXritww+I8HFF+vihoKBPFP3DQSeq7VMQWGfFmf67Dm0r2F8CLvnqWPcrBx14GelF4vg3P3dDltHh9ZedEcNYA1b0+BcupL8249JVsv38oSMw3bTxTVzFzLY0KCgQno2HOt0VsZSvIp76UO4io4msPdmJm1NLIJ4s5YK6lHdnp8w+kuZi/pZyQx8GKbKjEqaxQaPDy5tHE5ohvIxqwZcewN7rlUJ3ZVYibd\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n - \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\",\r\n - \ \"proxyAgentSettings\": {\r\n \"enabled\": true,\r\n \"addProxyAgentExtension\": - true,\r\n \"wireServer\": {\r\n \"mode\": \"Audit\"\r\n },\r\n - \ \"imds\": {\r\n \"mode\": \"Audit\"\r\n }\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"computerName\": \"vm000012\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"rdpThumbPrint\": - \"SHA25627Z9VzqGUqTLw6ndOtyASPtowtIa0N/PtMapa+6I2fg\",\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.14.0.1\",\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\": - \"2025-09-08T17:14:41+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - [\r\n {\r\n \"type\": \"Microsoft.CPlat.ProxyAgent.ProxyAgentLinux\",\r\n - \ \"typeHandlerVersion\": \"1.0.35\",\r\n \"status\": - {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Extension is running\"\r\n }\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm000012_OsDisk_1_facbb9a03b0b4f4a94679b5116e24f5b\",\r\n + \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm000009\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.11.1.8\",\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\": \"2024-07-02T09:24:55+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm000009_OsDisk_1_47fac15982a94280930e702de11c1a33\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-09-08T17:13:37.3986721+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": - [\r\n {\r\n \"name\": \"AzureGuestProxyAgentExtension\",\r\n - \ \"type\": \"Microsoft.CPlat.ProxyAgent.ProxyAgentLinux\",\r\n \"typeHandlerVersion\": - \"1.0.35\",\r\n \"substatuses\": [\r\n {\r\n \"code\": - \"ComponentStatus/ProxyAgentConnectionSummary/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"message\": \"proxy connection summary is empty\"\r\n },\r\n - \ {\r\n \"code\": \"ComponentStatus/ProxyAgentStatus/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"message\": \"{\\\"version\\\":\\\"1.0.35\\\",\\\"status\\\":\\\"SUCCESS\\\",\\\"monitorStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Proxy - agent status is running.\\\"},\\\"keyLatchStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Successfully - attest the key and ready to use. - 234\\\",\\\"states\\\":{\\\"imdsRuleId\\\":\\\"uBH/H72QqGFH+J8BZJS2ib+jN6E=\\\",\\\"wireServerRuleId\\\":\\\"uBH/H72QqGFH+J8BZJS2ib+jN6E=\\\",\\\"keyGuid\\\":\\\"13c0127c-8141-43eb-8920-2a23aa061c28\\\",\\\"hostGARuleId\\\":\\\"\\\",\\\"secureChannelState\\\":\\\"WireServer - Audit - IMDS Audit - HostGA Audit\\\"}},\\\"ebpfProgramStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Started - Redirector with eBPF maps - 190\\\"},\\\"proxyListenerStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Started - proxy listener, ready to accept request - 76\\\"},\\\"telemetryLoggerStatus\\\":{\\\"status\\\":\\\"UNKNOWN\\\",\\\"message\\\":\\\"Status - unknown.\\\"},\\\"proxyConnectionsCount\\\":0}\"\r\n },\r\n {\r\n - \ \"code\": \"ComponentStatus/ProxyAgentFailedAuthenticationSummary/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"message\": \"proxy failed auth summary is - empty\"\r\n }\r\n ],\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"message\": \"Update Proxy Agent command output - successfully\",\r\n \"time\": \"2025-09-08T17:14:36+00:00\"\r\n + succeeded\",\r\n \"time\": \"2024-07-02T09:24:10.3845562+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningComplete\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - complete\",\r\n \"time\": \"2025-09-08T17:14:46.5544158+00:00\"\r\n + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2024-07-02T09:24:40.6514716+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 \"timeCreated\": \"2025-09-08T17:13:33.9924813+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": - \"AzureGuestProxyAgentExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012/extensions/AzureGuestProxyAgentExtension\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": - \"eastus2euap\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"forceUpdateTag\": \"3084aabb-80fc-47c6-8d66-74fbfd4497ec\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": - true,\r\n \"publisher\": \"Microsoft.CPlat.ProxyAgent\",\r\n \"type\": - \"ProxyAgentLinux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": - {}\r\n }\r\n }\r\n ]\r\n}" + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2024-07-02T09:24:06.8531574+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '8118' + - '4138' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:50 GMT + - Tue, 02 Jul 2024 09:25:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 5A8D94F1ADB544668D20DB2E3E5B2C2B Ref B: PNQ231110909040 Ref C: 2025-09-08T17:14:51Z' + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -5041,39 +3848,38 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic?api-version=2022-01-01 response: body: - string: '{"name":"vm000012VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic","etag":"W/\"3388e054-6af3-40a0-bebd-ff2f552e42dd\"","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ef40be46-5730-4567-9c6a-70420173f10f","ipConfigurations":[{"name":"ipconfigvm000012","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic/ipConfigurations/ipconfigvm000012","etag":"W/\"3388e054-6af3-40a0-bebd-ff2f552e42dd\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"opsza24lv1oephopte4vxgt5yd.cbnx.internal.cloudapp.net"},"macAddress":"7C-1E-52-06-A2-B9","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000012NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000012"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus2euap","kind":"Regular"}' + string: '{"name":"vm000009VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","etag":"W/\"8c4de60a-9b92-45c7-9644-88b2f4f35f5c\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"53016a39-7c6c-46e7-96bb-7774fa135c36","ipConfigurations":[{"name":"ipconfigvm000009","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic/ipConfigurations/ipconfigvm000009","etag":"W/\"8c4de60a-9b92-45c7-9644-88b2f4f35f5c\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"foqitoq0huhero44jpslxsiegd.cbnx.internal.cloudapp.net"},"macAddress":"60-45-BD-73-DD-8F","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus2euap","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '2020' + - '1988' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:51 GMT + - Tue, 02 Jul 2024 09:25:02 GMT etag: - - W/"3388e054-6af3-40a0-bebd-ff2f552e42dd" + - W/"8c4de60a-9b92-45c7-9644-88b2f4f35f5c" expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05bf7389-3ed9-4803-8de3-2dba98f8f1b6 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 3C793F1EACB643E3A7D64F0CBB31110F Ref B: PNQ231110907031 Ref C: 2025-09-08T17:14:51Z' + - 81909c73-6de8-466d-a847-640e6232652f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -5091,45 +3897,44 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"vm000012PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000012PublicIP","etag":"W/\"8b08f7fb-ce2e-461d-87fc-17a595b4820f\"","location":"eastus2euap","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"cdd9dc1e-9cbf-49c2-a95f-1b32628fbba2","ipAddress":"20.252.128.195","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000012VMNic/ipConfigurations/ipconfigvm000012"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"vm000009PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP","etag":"W/\"62f8987e-9dcd-4940-88a6-38bbe7663cc3\"","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7506c4c5-4f1b-4913-a50a-af03f71294f0","ipAddress":"40.89.93.185","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic/ipConfigurations/ipconfigvm000009"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '829' + - '795' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:51 GMT + - Tue, 02 Jul 2024 09:25:04 GMT etag: - - W/"8b08f7fb-ce2e-461d-87fc-17a595b4820f" + - W/"62f8987e-9dcd-4940-88a6-38bbe7663cc3" expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a9600072-eadc-4e06-9b94-8098ff04d79f - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 49FE7E031AB149F48509F76020B867BB Ref B: PNQ231110909052 Ref C: 2025-09-08T17:14:52Z' + - 1f8a6e32-bc86-4493-b4b2-f31645c48d10 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK - request: body: '{"properties": {"description": "endpointDesc", "endpointType": "NfsMount", - "export": "exportfolder", "host": "20.252.128.195", "nfsVersion": "NFSv4"}}' + "export": "exportfolder", "host": "40.89.93.185", "nfsVersion": "NFSv4"}}' headers: Accept: - application/json @@ -5140,51 +3945,47 @@ interactions: Connection: - keep-alive Content-Length: - - '150' + - '148' Content-Type: - application/json ParameterSetName: - -g --storage-mover-name -n --description --export --nfs-version --host User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:53.0158186Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '667' + - '681' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:53 GMT + - Tue, 02 Jul 2024 09:25:05 GMT etag: - - '"7900ffcb-0000-3300-0000-68bf0f0d0000"' + - '"aa00f071-0000-3400-0000-6683c7720000"' expires: - '-1' mise-correlation-id: - - feb01d55-9933-44b0-b32a-94f6dfc4efe8 + - d32890e2-afd0-447a-bf38-cf727b4c9fc4 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/ac4da60c-c707-4165-bad8-278e13440563 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/aa3c9b36-3c85-4af4-85d9-6300e5472d90 x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 4D8D1C0EC14743FC8EED41DCC56A4B7B Ref B: PNQ231110908025 Ref C: 2025-09-08T17:14:52Z' + - '199' status: code: 200 message: OK @@ -5202,41 +4003,37 @@ interactions: ParameterSetName: - -g --storage-mover-name -n User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:53.0158186Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '667' + - '681' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:53 GMT + - Tue, 02 Jul 2024 09:25:08 GMT etag: - - '"7900ffcb-0000-3300-0000-68bf0f0d0000"' + - '"aa00f071-0000-3400-0000-6683c7720000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/e7ef5dac-6a0e-4763-8eb7-57815969a9ff + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/18e45fe4-b0fb-4178-a2c5-0e148cc18862 x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 9D67301999C349A39BB75F350B76485E Ref B: PNQ231110909034 Ref C: 2025-09-08T17:14:54Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3747' status: code: 200 message: OK @@ -5254,47 +4051,43 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:53.0158186Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '667' + - '681' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:54 GMT + - Tue, 02 Jul 2024 09:25:09 GMT etag: - - '"7900ffcb-0000-3300-0000-68bf0f0d0000"' + - '"aa00f071-0000-3400-0000-6683c7720000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/1f322e58-549e-4533-bb43-375c7f5ae3e8 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/1280f113-479d-4a48-9bdc-79184712f614 x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: CB62F6BCE3E54A879BDC8C36EB78F2E1 Ref B: PNQ231110909036 Ref C: 2025-09-08T17:14:54Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK - request: body: '{"properties": {"description": "endpointDescUpdate", "endpointType": "NfsMount", - "export": "exportfolder", "host": "20.252.128.195", "nfsVersion": "NFSv4"}}' + "export": "exportfolder", "host": "40.89.93.185", "nfsVersion": "NFSv4"}}' headers: Accept: - application/json @@ -5305,51 +4098,47 @@ interactions: Connection: - keep-alive Content-Length: - - '156' + - '154' Content-Type: - application/json ParameterSetName: - -g --storage-mover-name -n --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:55.7349911Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:10.9864383Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '673' + - '687' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:55 GMT + - Tue, 02 Jul 2024 09:25:10 GMT etag: - - '"790004cc-0000-3300-0000-68bf0f100000"' + - '"aa001972-0000-3400-0000-6683c7770000"' expires: - '-1' mise-correlation-id: - - de0429f8-beeb-4498-a8d9-da6465403081 + - e76151ce-3682-401e-be05-6394ac2865ce pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/057f8589-1d39-4387-ba49-0dda1c178275 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/66a3aae0-58aa-4483-8797-18923929c185 x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 89C972CD1CC44461820837C07F994317 Ref B: PNQ231110906060 Ref C: 2025-09-08T17:14:55Z' + - '199' status: code: 200 message: OK @@ -5367,35 +4156,31 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2025-09-08T17:12:10Z","module":"storage-mover"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2024-07-02T09:22:38Z","module":"storage-mover","DateCreated":"2024-07-02T09:22:44Z","Creator":"zhiyihuang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '387' + - '461' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:56 GMT + - Tue, 02 Jul 2024 09:25:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 7DC9924535FA48F0AD36E284A813C596 Ref B: PNQ231110909060 Ref C: 2025-09-08T17:14:56Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -5409,9 +4194,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.4 + - python-requests/2.32.0 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: body: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n @@ -5457,6 +4242,9 @@ interactions: \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: @@ -5468,7 +4256,7 @@ interactions: connection: - keep-alive content-length: - - '3384' + - '3615' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -5476,35 +4264,35 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Mon, 08 Sep 2025 17:14:57 GMT + - Tue, 02 Jul 2024 09:25:13 GMT etag: - - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2" + - W/"9fee27d398b0211e374a0f0e8e79c9b3a0342cfa43466b26b8548409639c8c17" expires: - - Mon, 08 Sep 2025 17:19:57 GMT + - Tue, 02 Jul 2024 09:30:13 GMT source-age: - - '108' + - '241' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding,Origin via: - 1.1 varnish x-cache: - HIT x-cache-hits: - - '0' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - ac86cdda67f8e6fa43cbc61a7d0cfadfc72f087f + - a2f3945b06606fd7fd4c48afe9788a03b0ce78bd x-frame-options: - deny x-github-request-id: - - A29E:23FABD:2169F86:2798B64:68BF0EA5 + - 581E:AA2A7:6885C0:7F60A9:66834B25 x-served-by: - - cache-sin-wsss1830034-SIN + - cache-qpg1222-QPG x-timer: - - S1757351697.248069,VS0,VE1 + - S1719912313.220013,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -5524,13 +4312,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n \ }\r\n]" headers: cache-control: @@ -5540,25 +4328,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:57 GMT + - Tue, 02 Jul 2024 09:25:14 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/96fe19aa-91ca-4fe3-8d6f-334b773da05c + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/35eb25c0-686e-42cc-bf41-7f5fd1ca8c03 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: AF9FE911CC4443518A27AEBAA42AD270 Ref B: PNQ231110907023 Ref C: 2025-09-08T17:14:57Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -5576,9 +4363,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -5593,36 +4380,34 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n + \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" headers: cache-control: - no-cache content-length: - - '1216' + - '1168' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:58 GMT + - Tue, 02 Jul 2024 09:25:14 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/2533627c-6b5b-4320-8a45-63195a529900 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/20890626-a8ec-4407-a3dd-42e7e6552d2e x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 2F9128F6A387458F8D31EB2D6575BF9C Ref B: PNQ231110906031 Ref C: 2025-09-08T17:14:57Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -5640,39 +4425,36 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: - string: '{"value":[{"name":"vm000012VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET","etag":"W/\"6b679a06-0a2f-4432-a11c-89f109cac094\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"7390e573-aecb-47dc-9dcf-993d5b9a7fc3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm000012Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet","etag":"W/\"6b679a06-0a2f-4432-a11c-89f109cac094\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG4MJKRSU7256ZF625637CKJ4IGIBWQ7RE5FLTTIOLSGVFMLOKL5BSOPV5EBECL4JLQ/providers/Microsoft.Network/networkInterfaces/VMG3UCQ3THFRFXD4UDBAMETCVMNIC/ipConfigurations/IPCONFIGVMG3UCQ3THFRFXD4UDBAMETC"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}' + string: '{"value":[{"name":"vm000009VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET","etag":"W/\"2d0db8d1-5b2c-499e-a41f-d3465e17edfe\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ba89a02b-3d1a-480e-bbde-4be4bbc90433","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm000009Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet","etag":"W/\"2d0db8d1-5b2c-499e-a41f-d3465e17edfe\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG5E5HVYER7TCIOQDDNL2MHH2IOFZZY5S5EJLG2T3CTUTEFKZR4IALISHFXUERSP57S/providers/Microsoft.Network/networkInterfaces/VMZJJ3PMAMGQCK5BWALT5Q2LVMNIC/ipConfigurations/IPCONFIGVMZJJ3PMAMGQCK5BWALT5Q2L"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}' headers: cache-control: - no-cache content-length: - - '1349' + - '1317' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:58 GMT + - Tue, 02 Jul 2024 09:25:17 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60c3d161-2419-49c4-88ef-b0cf2a9394e8 - x-ms-original-request-ids: - - 5140c2a8-b252-4c6e-9786-724631059e64 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 370F2DDD14A54E438573E60B21F772C6 Ref B: PNQ231110906042 Ref C: 2025-09-08T17:14:58Z' + - 6129e7d0-9b92-4a11-88d9-247152f77680 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK @@ -5690,9 +4472,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-03-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n @@ -6494,1097 +5276,794 @@ interactions: 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_E32_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104i_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F48s_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": - 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2bs_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4bs_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8bs_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16bs_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32bs_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48bs_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64bs_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96bs_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ibs_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2bds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4bds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8bds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16bds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32bds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48bds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64bds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96bds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ibds_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ls_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ls_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ls_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48ls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64ls_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ls_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2lds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4lds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8lds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16lds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32lds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48lds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64lds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96lds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2ls_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2s_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4s_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8s_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ls_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16s_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32ls_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32s_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E104i_v5\",\r\n \"numberOfCores\": + 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E80is_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M208ms_v2\",\r\n \"numberOfCores\": - 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M208s_v2\",\r\n \"numberOfCores\": - 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2918400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208s_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208ms_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416ms_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_8_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 7782400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_9_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 8773632,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_10_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 9723904,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"numberOfCores\": + 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F48s_v2\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"numberOfCores\": + 393216,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v4\",\r\n \"numberOfCores\": + 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": + 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2bs_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4bs_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8bs_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16bs_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32bs_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48bs_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64bs_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2a_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E112ibs_v5\",\r\n \"numberOfCores\": + 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2bds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4a_v4\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4bds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8a_v4\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8bds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16a_v4\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16bds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20a_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32bds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48a_v4\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48bds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64a_v4\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64bds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96a_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E112ibds_v5\",\r\n \"numberOfCores\": + 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ls_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ls_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ls_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ls_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ls_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48ls_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64ls_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ias_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96ls_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2lds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4as_v5\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4lds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8as_v5\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8lds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16as_v5\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16lds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32as_v5\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32lds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48lds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v5\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64lds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96lds_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v5\",\r\n \"numberOfCores\": + 3686400,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2ls_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2s_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2ts_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4ls_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4s_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8ls_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8s_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16ls_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16s_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B32ls_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B32s_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v5\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ias_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ads_v5\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ads_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ads_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ads_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112iads_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2es_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4es_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8es_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16es_v5\",\r\n \"numberOfCores\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32es_v5\",\r\n \"numberOfCores\": + 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48es_v5\",\r\n \"numberOfCores\": + 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64es_v5\",\r\n \"numberOfCores\": + 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96es_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2eds_v5\",\r\n \"numberOfCores\": + 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 48128,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4eds_v5\",\r\n \"numberOfCores\": + 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 107520,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8eds_v5\",\r\n \"numberOfCores\": + 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 232448,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16eds_v5\",\r\n \"numberOfCores\": + 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 474112,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32eds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 957440,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48eds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1440768,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64eds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96eds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2es_v5\",\r\n \"numberOfCores\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC4es_v5\",\r\n \"numberOfCores\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8es_v5\",\r\n \"numberOfCores\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16es_v5\",\r\n \"numberOfCores\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32es_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48es_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64es_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128es_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128ies_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2eds_v5\",\r\n \"numberOfCores\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E80is_v4\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M208ms_v2\",\r\n \"numberOfCores\": + 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M208s_v2\",\r\n \"numberOfCores\": + 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 2918400,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208s_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208ms_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416ms_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_8_v2\",\r\n \"numberOfCores\": + 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 7782400,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 48128,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4eds_v5\",\r\n \"numberOfCores\": + 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 107520,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8eds_v5\",\r\n \"numberOfCores\": + 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 232448,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16eds_v5\",\r\n \"numberOfCores\": + 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 474112,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32eds_v5\",\r\n \"numberOfCores\": + 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 957440,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48eds_v5\",\r\n \"numberOfCores\": + 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1440768,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64eds_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128eds_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC128ieds_v5\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ads_v6\",\r\n \"numberOfCores\": + 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2as_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ads_v6\",\r\n \"numberOfCores\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ads_v6\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8as_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ads_v6\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16as_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ads_v6\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ads_v6\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ads_v6\",\r\n \"numberOfCores\": + 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64as_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ads_v6\",\r\n \"numberOfCores\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D96as_v4\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ads_v6\",\r\n \"numberOfCores\": + 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2a_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ads_v6\",\r\n \"numberOfCores\": + 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4a_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ads_v6\",\r\n \"numberOfCores\": + 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8a_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ads_v6\",\r\n \"numberOfCores\": + 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16a_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ads_v6\",\r\n \"numberOfCores\": + 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20a_v4\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ads_v6\",\r\n \"numberOfCores\": + 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ads_v6\",\r\n \"numberOfCores\": + 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48a_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ads_v6\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64a_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ads_v6\",\r\n \"numberOfCores\": + 1638400,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96a_v4\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 5765120,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS1\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2as_v4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2as_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4as_v4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4as_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4-4\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4-8\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16as_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20as_v4\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5-8\",\r\n \"numberOfCores\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5-16\",\r\n \"numberOfCores\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v6\",\r\n \"numberOfCores\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48as_v4\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96as_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ias_v4\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2as_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D4as_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D8as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D16as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_D32as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D48as_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D64as_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D96as_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E2as_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E4-2as_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8as_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E4as_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8-2as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16as_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2als_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4als_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8als_v6\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_E8-4as_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16als_v6\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E8as_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_E16-4as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32als_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48als_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64als_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96als_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2alds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4alds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8alds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16alds_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32alds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48alds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64alds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96alds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2as_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_F4as_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_F8as_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_F16as_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E16as_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_F32as_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F48as_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F64as_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + \ },\r\n {\r\n \"name\": \"Standard_E20as_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2als_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_F4als_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_F8als_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_F16als_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_F32als_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_F48als_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_F64als_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2ams_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_F4ams_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_F8ams_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_F16ams_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F32ams_v6\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32as_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F48ams_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E48as_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F64ams_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC24s_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1ds_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2ds_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64as_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96as_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E112ias_v5\",\r\n \"numberOfCores\": + 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2ads_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ds_v3\",\r\n \"numberOfCores\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4ads_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ds_v3\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8ads_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ds_v3\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16ads_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32ads_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC24ds_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + \ },\r\n {\r\n \"name\": \"Standard_D48ads_v5\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ds_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + \ },\r\n {\r\n \"name\": \"Standard_D64ads_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ds_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8as_v3\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_D96ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2ads_v5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2ads_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4ads_v5\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2ads_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16as_v3\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4ads_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8ads_v5\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4ads_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32as_v3\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8ads_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16ads_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E20ads_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8ads_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48as_v3\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16ads_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32ads_v5\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E48ads_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64as_v3\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16ads_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80as_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32ads_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64ads_v5\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E96ads_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E112iads_v5\",\r\n \"numberOfCores\": + 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n \ },\r\n {\r\n \"name\": \"Standard_DC2as_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n @@ -7739,657 +6218,291 @@ interactions: 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n \ {\r\n \"name\": \"Standard_EC8as_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ls_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ls_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ls_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ls_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ls_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48ls_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64ls_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ls_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128ls_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2lds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4lds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8lds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16lds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32lds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48lds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64lds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96lds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128lds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128-32s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128-64s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128-32ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128-64ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E128ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX2ms_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 43008,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX4-2ms_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX4ms_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX8-2ms_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX8-4ms_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX8ms_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX12-6ms_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX12ms_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16-4ms_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16-8ms_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16ms_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24-6ms_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24-12ms_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24ms_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32-8ms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32-16ms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32ms_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC16as_cc_v5\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC20as_cc_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32as_cc_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48-12ms_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48-24ms_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48ms_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48as_cc_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64-16ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64-32ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64ms_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64as_cc_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX2mds_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 43008,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX4-2mds_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX4mds_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96as_cc_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4ads_cc_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 86016,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_FX8-2mds_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX8-4mds_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX8mds_v2\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8ads_cc_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 172032,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX12-6mds_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX12mds_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 258048,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16-4mds_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16-8mds_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX16mds_v2\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16ads_cc_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 344064,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24-6mds_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24-12mds_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX24mds_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32-8mds_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32-16mds_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX32mds_v2\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC20ads_cc_v5\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48-12mds_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48-24mds_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX48mds_v2\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1032192,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64-16mds_v2\",\r\n \"numberOfCores\": + 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64-32mds_v2\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX64mds_v2\",\r\n \"numberOfCores\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1376256,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E192is_v6\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E192ids_v6\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L2s_v4\",\r\n \"numberOfCores\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2es_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_L4s_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC4es_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_L8s_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC8es_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_L16s_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC16es_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC32es_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48es_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v4\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64es_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L96s_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96-24ms_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96-48ms_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96ms_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96-24mds_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96-48mds_v2\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_FX96mds_v2\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96es_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1875968,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2eds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": + 48128,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4eds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": + 107520,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8eds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": + 232448,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16eds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": + 474112,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32eds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": + 957440,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48eds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": + 1440768,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC64eds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": + 2890752,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC96eds_v5\",\r\n \"numberOfCores\": + 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2es_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC4es_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC8es_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_EC16es_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32es_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48es_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64es_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128es_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128ies_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC2eds_v5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": + 48128,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC4eds_v5\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": + 107520,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC8eds_v5\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": + 232448,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC16eds_v5\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": + 474112,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC32eds_v5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": + 957440,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC48eds_v5\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": + 1440768,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC64eds_v5\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": + 2890752,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128eds_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_EC128ieds_v5\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2890752,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": + \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n + \ {\r\n \"name\": \"Standard_DC16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC24s_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48s_v3\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC1ds_v3\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC2ds_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": + 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC4ds_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": + 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC8ds_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": + 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC16ds_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": + 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC24ds_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC32ds_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": + 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DC48ds_v3\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L8as_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_L16as_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": + 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L32as_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L48as_v3\",\r\n \"numberOfCores\": + 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L64as_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_L80as_v3\",\r\n \"numberOfCores\": + 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": 64,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7340032,\r\n - \ \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": 128,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14680064,\r\n - \ \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": 32,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1048576,\r\n - \ \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": 32,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1048576,\r\n - \ \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": 64,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2097152,\r\n - \ \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2097152,\r\n - \ \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4194304,\r\n - \ \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": + 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7340032,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14680064,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1048576,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": + 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n \ },\r\n {\r\n \"name\": \"Standard_M64ms_v2\",\r\n \"numberOfCores\": @@ -8482,19 +6595,7 @@ interactions: 64\r\n },\r\n {\r\n \"name\": \"Standard_M192idms_v2\",\r\n \"numberOfCores\": 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4194304,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": + 64\r\n },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 90112,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n \ },\r\n {\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"numberOfCores\": @@ -8506,159 +6607,42 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 720896,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96pls_v6\",\r\n \"numberOfCores\": + \ },\r\n {\r\n \"name\": \"Standard_ND96is_MI300X_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2plds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4plds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8plds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16plds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32plds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48plds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64plds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96plds_v6\",\r\n \"numberOfCores\": + 0,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND96isr_MI300X_v5\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4pds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8pds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16pds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n + 0,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": 16\r\n \ }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '202794' + - '148107' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:14:59 GMT + - Tue, 02 Jul 2024 09:25:18 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/28d80976-776d-46e3-ae38-d82ba0dfbc13 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/bab74962-c197-4b45-9952-6b393e37ffb6 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetSubscriptionInfoSubscriptionMaximum;359 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 318E27E7AEA74F8798B8C522C7F70D3B Ref B: PNQ231110909054 Ref C: 2025-09-08T17:14:59Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -8669,9 +6653,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.4 + - python-requests/2.32.0 method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: body: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n @@ -8717,6 +6701,9 @@ interactions: \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: @@ -8728,7 +6715,7 @@ interactions: connection: - keep-alive content-length: - - '3384' + - '3615' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -8736,17 +6723,17 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Mon, 08 Sep 2025 17:15:00 GMT + - Tue, 02 Jul 2024 09:25:20 GMT etag: - - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2" + - W/"9fee27d398b0211e374a0f0e8e79c9b3a0342cfa43466b26b8548409639c8c17" expires: - - Mon, 08 Sep 2025 17:20:00 GMT + - Tue, 02 Jul 2024 09:30:20 GMT source-age: - - '111' + - '248' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding,Origin via: - 1.1 varnish x-cache: @@ -8756,15 +6743,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 2f5c39ca74dd338860de71e55626137f78fa2b0b + - ad8067a5ea36e3bc771bcc72a83b9a38b3e3937e x-frame-options: - deny x-github-request-id: - - A29E:23FABD:2169F86:2798B64:68BF0EA5 + - 581E:AA2A7:6885C0:7F60A9:66834B25 x-served-by: - - cache-sin-wsss1830062-SIN + - cache-qpg1279-QPG x-timer: - - S1757351701.621171,VS0,VE3 + - S1719912320.265394,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -8784,13 +6771,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n \ }\r\n]" headers: cache-control: @@ -8800,25 +6787,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:15:00 GMT + - Tue, 02 Jul 2024 09:25:21 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/200e74d4-e4c6-4572-a79d-11f5a4e0521e + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/d5a6e9d6-5845-4a50-bea6-bbcfc3787688 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: E56A2F15CB5A4BD5AEC7DBF12F5FD587 Ref B: PNQ231110909040 Ref C: 2025-09-08T17:15:00Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -8836,9 +6822,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -8853,36 +6839,34 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n + \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" headers: cache-control: - no-cache content-length: - - '1216' + - '1168' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:15:01 GMT + - Tue, 02 Jul 2024 09:25:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/f691dba5-252f-4cd1-a7ea-c1d648730003 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/ce7d85c5-b240-4dcf-aac1-0bfa28ccb214 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 2006F54BBF2446EC8B02D25B5D1B00A5 Ref B: PNQ231110907060 Ref C: 2025-09-08T17:15:01Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK @@ -8900,13 +6884,13 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n + string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n \ }\r\n]" headers: cache-control: @@ -8916,25 +6900,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:15:01 GMT + - Tue, 02 Jul 2024 09:25:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/7aecceba-1edc-43cf-b4eb-081343b757d0 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/7fb80410-4a62-4a63-b136-c49ec9ba6193 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 06C5C96ECC804772811A7723418A8201 Ref B: PNQ231110909052 Ref C: 2025-09-08T17:15:01Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK @@ -8952,9 +6935,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202507300?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -8969,64 +6952,62 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 30\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-08-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202507300\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202507300\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n + \ \"name\": \"22.04.202406140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202406140\"\r\n}" headers: cache-control: - no-cache content-length: - - '1216' + - '1168' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:15:01 GMT + - Tue, 02 Jul 2024 09:25:25 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/e9f7605f-f59f-4a22-ac2b-a8ce7ea55adb + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/1a444848-4883-4795-9ed2-562ab86ff4d0 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 16952C95ED34450EA03E5A461D2C659A Ref B: PNQ231110909060 Ref C: 2025-09-08T17:15:02Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm000013NSG", + [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm000010NSG", "apiVersion": "2015-06-15", "location": "eastus2euap", "tags": {}, "dependsOn": []}, {"apiVersion": "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "vm000013PublicIP", "location": "eastus2euap", "tags": {}, "dependsOn": + "name": "vm000010PublicIP", "location": "eastus2euap", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", - "name": "vm000013VMNic", "location": "eastus2euap", "tags": {}, "dependsOn": - ["Microsoft.Network/networkSecurityGroups/vm000013NSG", "Microsoft.Network/publicIpAddresses/vm000013PublicIP"], - "properties": {"ipConfigurations": [{"name": "ipconfigvm000013", "properties": - {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG"}}}, - {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm000013", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000013VMNic"], + "name": "vm000010VMNic", "location": "eastus2euap", "tags": {}, "dependsOn": + ["Microsoft.Network/networkSecurityGroups/vm000010NSG", "Microsoft.Network/publicIpAddresses/vm000010PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm000010", "properties": + {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG"}}}, + {"apiVersion": "2024-03-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm000010", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000010VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_D4s_v3"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic", + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": - "vm000013", "adminUsername": "ubuntuuser", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD2YWxGLzUtVKWysDXWnv+cLEqKnPsOsyKBriQ5/6JPNU6+ROGEPh6HOwSe8f+phhQOhOL4feOsyebPHAb3/0peeRohvXMoR44lFUOkTPzv3dF7mSNx+DH8IHRMDEUisQxyBNzgevIqjppXyFbVCtBjNZbXOCjAQajl4MTMUS53DMB5v1Ut7+TTm9r1Q8vySD6q7fY/2HY/Li0aJS0hbehccFTxsy4YXd0c/Srmoc6QfJCzx6APkOEaf+1C8K6uFwdYW7tPTAP1Iw6jET5o+Fe7ON11PuxH/iUfD5VzFVPzkiw1Ob5UE08f36VvUMywOUtbq104bR2R5YMqQb/wCcX/", + "vm000010", "adminUsername": "ubuntuuser", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDy4KT6QZuyFbmWDdF/Vdc7B8PzU/TrgtnZNHofoVGpHUY9emsn6t3OhrT8y+he9stKP+CfcOEhR38Rn8gCJXdeo6VX3OyeCrkPMw+PZEj+TJi3Yp+N/BXritww+I8HFF+vihoKBPFP3DQSeq7VMQWGfFmf67Dm0r2F8CLvnqWPcrBx14GelF4vg3P3dDltHh9ZedEcNYA1b0+BcupL8249JVsv38oSMw3bTxTVzFzLY0KCgQno2HOt0VsZSvIp76UO4io4msPdmJm1NLIJ4s5YK6lHdnp8w+kuZi/pZyQx8GKbKjEqaxQaPDy5tHE5ohvIxqwZcewN7rlUJ3ZVYibd", "path": "/home/ubuntuuser/.ssh/authorized_keys"}]}}}, "securityProfile": {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": true, "vTpmEnabled": true}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' @@ -9046,41 +7027,37 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm","name":"vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14615989426423034170","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-09-08T17:15:03.1910782Z","duration":"PT0.0001165S","correlationId":"2b6284a1-edde-4694-991b-8d7b0324d1e4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000013NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000013PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000013VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000013VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000013"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","name":"vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11142081930931402277","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-07-02T09:25:27.7553406Z","duration":"PT0.000102S","correlationId":"a4f45bcb-dcdf-41dd-aa7e-4c556c3d6d97","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000010PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000010"}]}}' headers: azure-asyncoperation: - - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2/operationStatuses/08584816945586504362?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2121' + - '2120' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:15:04 GMT + - Tue, 02 Jul 2024 09:25:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.473.0 + - 1.24.0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: BE52AF517F1B49AB8FCA405124B46BFD Ref B: PNQ231110907062 Ref C: 2025-09-08T17:15:02Z' + - '199' status: code: 201 message: Created @@ -9098,55 +7075,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 08 Sep 2025 17:15:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: E3B0A239EF1F4BB7A8E53CE85755CBBD Ref B: PNQ231110906060 Ref C: 2025-09-08T17:15:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys - User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -9158,67 +7089,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:15:35 GMT + - Tue, 02 Jul 2024 09:25:27 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 9FB2A088E9D14C2B89F5D35AD4F53EE8 Ref B: PNQ231110909060 Ref C: 2025-09-08T17:15:36Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys - User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 08 Sep 2025 17:16:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: F16ACA14B0FA468583540E3852B24A7D Ref B: PNQ231110909025 Ref C: 2025-09-08T17:16:06Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -9236,9 +7117,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -9250,21 +7131,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:16:36 GMT + - Tue, 02 Jul 2024 09:25:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: FBB17B4C721A48EBB0CABC05F1C80AD7 Ref B: PNQ231110909042 Ref C: 2025-09-08T17:16:37Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -9282,9 +7159,9 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584442551822858877?api-version=2024-11-01&t=638929485047849105&c=MIIIpDCCBoygAwIBAgITFgHT86SvkPBZ0Kze1QABAdPzpDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwODIxMTMxNDA5WhcNMjUxMTE5MTMxNDA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPIw97femZhQQikMmtIUbBz4ilfWKL1pBRGhqyE_yiaKdWFMkx-Lrs5PKpKf359LGLXEng68fNpRZlZdxKF59oRgHkQ1l6435cU2QDp5b3NZ6SPNKLsxAiNvxTVOQ_jbCxTUnBGcp1_gxsAyTjCGrl2fKSCdaRSw-Lhrxs0-ImtcYa5z9m8kXvRa0U_b3baiO5UZnNbvfqmE6RvjjrcMvv8i-nQevzcw3aZLnc9eEEKxBI5pNIVXIr7dKhsZfi-K61CRBxmlZxzpwzMWF6WZrHeA5_kxAo0RWq6aWHALI3qRh-WxWls5HXbZqbggvPYrb3F8C5FxjcSxz1dGBQa_p9UCAwEAAaOCBJEwggSNMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwHQYDVR0OBBYEFKgjTTCrzlnMX6LudHhi_0w04LAAMA4GA1UdDwEB_wQEAwIFoDCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFEijrWB1am_sYPNpVdEAsTJX_GzkMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAgEAfJTGVgnSjJYm9EVngrQ1HxxR608CwGhKUZwRJk2Yii2yCTrjUv4LqQHUR3Z_BH5h5IYMq_M2R8bOdxYAn3IdjZ3cX8lO6-R6_QKyQg4y2U-zrez_Y-T3uHiarKc5V-OdvL9MCJk9PnnYbOPiTY7dlIkvJLzj7BhBm9HZf9UYe9NHWVFQA9aOXsWu3MPWKpDbSO7f5odoxflcZRV_PRNiHy_h3uTfTaKE_7GJtxb6rEvGVH--wrf27TMteF0WJFbKM9NNaQO-26CBj5Oy2lSLl-z1cTN06_wOeDzZAYjesI2WxJPvHw81dJ8Y2xQ2uudFoZw4RkzVJ35mskIpb9bitTAc63ja9FWFwtM2USCnimBK-Y0JTmbdF3eN6-ptKAcm_NT9t9fDyKE32Ouzjrb3dlHRfNytVadvJIipr-3_pJ6rX1svQ8F-iLWUbPTZb6x-4v9Rb6DbhteupZ86jCL2D-DePB7Pu67d-jIRUO6LwIa5g02PRdVcKsreUDFnJaYynHZ0SPlQlVoGKIzjPsBkbXanceUdsq2ul4oeDPPgvIOpbU_c9ecWdjCiuIcf9yRvRqe49F2vzGTwDVeNHKsKeIrsqijbNgBdpmlJ5OEiL5KVCb1amvVlKVCHYNPTSxgYlcialh86hxmXacgDDvJQzNPfe-OH6-YkOImtv8AeHso&s=tmDjowLU3NqxWwFrMMLiA1EFCOx_2gQegMi0sKlMjMFa9jFj-l76w4vXVuIqyGUp69xxm68rLGVAMOnZAq7N3roejf0YM2YGQq9OtnnsWd_BPJ3Z4tUpz9aco2_uN9Orbq9xLXb2GGBlQKgKw_YZuDe_t_-QtzRTwYyDcG8bRra8UlHVXgD8h6X3NWT_kqRqfkuEvtUXf5PZPLil1uXEmvpguqkD7itlTa1cevKGuFGKArMQQOsV5cTeIA8YhHmmkcdn8HYwbzr9GmlNqqiYR1TMQRqHKU_0qWIhWajLLm6g01POb7-2V9E1wzXv2vBP8N_oAC9qJR0dCaixsj-58Q&h=J-xEnX77-rP87YQTLh6uTpQvdVioAnrAmHq253emm4U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -9296,21 +7173,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:08 GMT + - Tue, 02 Jul 2024 09:26:28 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 02EC48A2EAC648219CEA27FCB9D18B3D Ref B: PNQ231110909034 Ref C: 2025-09-08T17:17:08Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -9328,35 +7201,31 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm","name":"vm_deploy_aCLjlCiVBbluQhUi43j4ij2soGnqnkKm","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14615989426423034170","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-09-08T17:16:42.380281Z","duration":"PT1M39.1892028S","correlationId":"2b6284a1-edde-4694-991b-8d7b0324d1e4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000013NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000013PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000013VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000013VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000013"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","name":"vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11142081930931402277","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-07-02T09:26:12.6094225Z","duration":"PT44.8541839S","correlationId":"a4f45bcb-dcdf-41dd-aa7e-4c556c3d6d97","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000010PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000010"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '2767' + - '2766' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:08 GMT + - Tue, 02 Jul 2024 09:26:28 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 6A9967E8D15E42E988CB5ADD4B29EF94 Ref B: PNQ231110909040 Ref C: 2025-09-08T17:17:08Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK @@ -9374,130 +7243,83 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013?$expand=instanceView&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010?$expand=instanceView&api-version=2024-03-01 response: body: - string: "{\r\n \"name\": \"vm000013\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013\",\r\n + string: "{\r\n \"name\": \"vm000010\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"Mover\": \"Dev\",\r\n - \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\",\r\n \"team\": \"Discovery\"\r\n },\r\n \"identity\": {\r\n - \ \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f0ab1386-1506-466e-9e6e-abae64a7f2a9\",\r\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"properties\": - {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"13fc5430-7157-4fe3-b450-a242b301766f\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n - \ \"sku\": \"22_04-lts-gen2\",\r\n \"version\": \"latest\",\r\n - \ \"exactVersion\": \"22.04.202507300\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm000013_OsDisk_1_09d3997e129e47fc933164495e661ec6\",\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/vm000013_OsDisk_1_09d3997e129e47fc933164495e661ec6\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_D4s_v3\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"5588df94-42be-4755-9c0c-d7fb0045b62e\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202406140\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm000010_OsDisk_1_0288de70bcea440b8c64548d95ac0211\",\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/vm000010_OsDisk_1_0288de70bcea440b8c64548d95ac0211\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": - \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm000013\",\r\n + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm000010\",\r\n \ \"adminUsername\": \"ubuntuuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/ubuntuuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQD2YWxGLzUtVKWysDXWnv+cLEqKnPsOsyKBriQ5/6JPNU6+ROGEPh6HOwSe8f+phhQOhOL4feOsyebPHAb3/0peeRohvXMoR44lFUOkTPzv3dF7mSNx+DH8IHRMDEUisQxyBNzgevIqjppXyFbVCtBjNZbXOCjAQajl4MTMUS53DMB5v1Ut7+TTm9r1Q8vySD6q7fY/2HY/Li0aJS0hbehccFTxsy4YXd0c/Srmoc6QfJCzx6APkOEaf+1C8K6uFwdYW7tPTAP1Iw6jET5o+Fe7ON11PuxH/iUfD5VzFVPzkiw1Ob5UE08f36VvUMywOUtbq104bR2R5YMqQb/wCcX/\"\r\n + AAAAB3NzaC1yc2EAAAADAQABAAABAQDy4KT6QZuyFbmWDdF/Vdc7B8PzU/TrgtnZNHofoVGpHUY9emsn6t3OhrT8y+he9stKP+CfcOEhR38Rn8gCJXdeo6VX3OyeCrkPMw+PZEj+TJi3Yp+N/BXritww+I8HFF+vihoKBPFP3DQSeq7VMQWGfFmf67Dm0r2F8CLvnqWPcrBx14GelF4vg3P3dDltHh9ZedEcNYA1b0+BcupL8249JVsv38oSMw3bTxTVzFzLY0KCgQno2HOt0VsZSvIp76UO4io4msPdmJm1NLIJ4s5YK6lHdnp8w+kuZi/pZyQx8GKbKjEqaxQaPDy5tHE5ohvIxqwZcewN7rlUJ3ZVYibd\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n - \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\",\r\n - \ \"proxyAgentSettings\": {\r\n \"enabled\": true,\r\n \"addProxyAgentExtension\": - true,\r\n \"wireServer\": {\r\n \"mode\": \"Audit\"\r\n },\r\n - \ \"imds\": {\r\n \"mode\": \"Audit\"\r\n }\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"computerName\": \"vm000013\",\r\n \"osName\": + \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm000010\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.14.0.1\",\r\n \"statuses\": [\r\n {\r\n + \ \"vmAgentVersion\": \"2.11.1.8\",\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\": \"2025-09-08T17:17:06+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n - \ \"type\": \"Microsoft.CPlat.ProxyAgent.ProxyAgentLinux\",\r\n - \ \"typeHandlerVersion\": \"1.0.35\",\r\n \"status\": - {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Extension is running\"\r\n }\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm000013_OsDisk_1_09d3997e129e47fc933164495e661ec6\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2024-07-02T09:26:24+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm000010_OsDisk_1_0288de70bcea440b8c64548d95ac0211\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-09-08T17:15:30.5385035+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": - [\r\n {\r\n \"name\": \"AzureGuestProxyAgentExtension\",\r\n - \ \"type\": \"Microsoft.CPlat.ProxyAgent.ProxyAgentLinux\",\r\n \"typeHandlerVersion\": - \"1.0.35\",\r\n \"substatuses\": [\r\n {\r\n \"code\": - \"ComponentStatus/ProxyAgentConnectionSummary/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"message\": \"proxy connection summary is empty\"\r\n },\r\n - \ {\r\n \"code\": \"ComponentStatus/ProxyAgentStatus/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"message\": \"{\\\"version\\\":\\\"1.0.35\\\",\\\"status\\\":\\\"SUCCESS\\\",\\\"monitorStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Proxy - agent status is running.\\\"},\\\"keyLatchStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Successfully - attest the key and ready to use. - 220\\\",\\\"states\\\":{\\\"imdsRuleId\\\":\\\"uBH/H72QqGFH+J8BZJS2ib+jN6E=\\\",\\\"keyGuid\\\":\\\"d4d7b502-61d7-4623-a2bb-53444f29b55c\\\",\\\"hostGARuleId\\\":\\\"\\\",\\\"wireServerRuleId\\\":\\\"uBH/H72QqGFH+J8BZJS2ib+jN6E=\\\",\\\"secureChannelState\\\":\\\"WireServer - Audit - IMDS Audit - HostGA Audit\\\"}},\\\"ebpfProgramStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Started - Redirector with eBPF maps - 176\\\"},\\\"proxyListenerStatus\\\":{\\\"status\\\":\\\"RUNNING\\\",\\\"message\\\":\\\"Started - proxy listener, ready to accept request - 71\\\"},\\\"telemetryLoggerStatus\\\":{\\\"status\\\":\\\"UNKNOWN\\\",\\\"message\\\":\\\"Status - unknown.\\\"},\\\"proxyConnectionsCount\\\":0}\"\r\n },\r\n {\r\n - \ \"code\": \"ComponentStatus/ProxyAgentFailedAuthenticationSummary/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"message\": \"proxy failed auth summary is - empty\"\r\n }\r\n ],\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"message\": \"Update Proxy Agent command output - successfully\",\r\n \"time\": \"2025-09-08T17:17:00+00:00\"\r\n + succeeded\",\r\n \"time\": \"2024-07-02T09:25:38.7163474+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-09-08T17:16:40.3507844+00:00\"\r\n + succeeded\",\r\n \"time\": \"2024-07-02T09:26:11.9834146+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 \"timeCreated\": \"2025-09-08T17:15:27.4447601+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": - \"AzureGuestProxyAgentExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013/extensions/AzureGuestProxyAgentExtension\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": - \"eastus2euap\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"forceUpdateTag\": \"2bea600e-dabe-40a9-97ce-d0dc38f9411d\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": - true,\r\n \"publisher\": \"Microsoft.CPlat.ProxyAgent\",\r\n \"type\": - \"ProxyAgentLinux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": - {}\r\n }\r\n }\r\n ]\r\n}" + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2024-07-02T09:25:35.8725272+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '8016' + - '4138' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:09 GMT + - Tue, 02 Jul 2024 09:26:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;32 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: FBEC3AB2531040F2967E929A907A6E3C Ref B: PNQ231110907025 Ref C: 2025-09-08T17:17:09Z' + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: '' @@ -9515,42 +7337,41 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic?api-version=2022-01-01 response: body: - string: '{"name":"vm000013VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic","etag":"W/\"e126bd39-e607-4dff-b6df-b2f88351cc7b\"","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"539a4dd7-ac84-49b6-bfc0-41690d470df2","ipConfigurations":[{"name":"ipconfigvm000013","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic/ipConfigurations/ipconfigvm000013","etag":"W/\"e126bd39-e607-4dff-b6df-b2f88351cc7b\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000012VNET/subnets/vm000012Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"opsza24lv1oephopte4vxgt5yd.cbnx.internal.cloudapp.net"},"macAddress":"60-45-BD-A4-6A-4A","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000013NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000013"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus2euap","kind":"Regular"}' + string: '{"name":"vm000010VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","etag":"W/\"f9acb86a-73ff-448b-8e43-bdb54c5f571e\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"34797809-f40d-4135-8040-e974453cfa7e","ipConfigurations":[{"name":"ipconfigvm000010","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic/ipConfigurations/ipconfigvm000010","etag":"W/\"f9acb86a-73ff-448b-8e43-bdb54c5f571e\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"foqitoq0huhero44jpslxsiegd.cbnx.internal.cloudapp.net"},"macAddress":"00-22-48-03-89-C3","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus2euap","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '2020' + - '1988' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:09 GMT + - Tue, 02 Jul 2024 09:26:31 GMT etag: - - W/"e126bd39-e607-4dff-b6df-b2f88351cc7b" + - W/"f9acb86a-73ff-448b-8e43-bdb54c5f571e" expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 411d22e3-663e-4c46-9dd7-7851d14da0f6 - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: A3A9123E41CB4E97A3A73F9670ABF25B Ref B: PNQ231110908034 Ref C: 2025-09-08T17:17:09Z' + - 8d13c394-3cef-4ab1-a604-afeff98f771c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -9565,39 +7386,38 @@ interactions: ParameterSetName: - -n -g --image --size --nsg-rule --admin-username --generate-ssh-keys User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"vm000013PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000013PublicIP","etag":"W/\"7fb9609b-0b23-4ffd-8826-b852e81dc705\"","location":"eastus2euap","tags":{"Mover":"Dev","team":"Discovery"},"properties":{"provisioningState":"Succeeded","resourceGuid":"c7404d8a-bda7-4499-a8ce-367bfa5a32a8","ipAddress":"52.225.178.34","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000013VMNic/ipConfigurations/ipconfigvm000013"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"vm000010PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP","etag":"W/\"458d2b32-5599-4aab-a9db-c78054e80731\"","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"279b3085-bc41-4464-ae9a-032a69fae927","ipAddress":"40.89.111.31","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic/ipConfigurations/ipconfigvm000010"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '828' + - '795' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:11 GMT + - Tue, 02 Jul 2024 09:26:33 GMT etag: - - W/"7fb9609b-0b23-4ffd-8826-b852e81dc705" + - W/"458d2b32-5599-4aab-a9db-c78054e80731" expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2178ac7b-11a9-4844-9876-7dbd1efab24e - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 8DFBBDA3B05F4C0482B16230C59AC825 Ref B: PNQ231110908052 Ref C: 2025-09-08T17:17:10Z' + - 0c60ea7f-c693-4a2f-86b7-61c2c420f6aa + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -9605,7 +7425,7 @@ interactions: body: '{"properties": {"description": "endpointSmbDesc", "endpointType": "SmbMount", "credentials": {"passwordUri": "https://smb-demo-kv.vault.azure.net/secrets/password", "type": "AzureKeyVaultSmb", "usernameUri": "https://smb-demo-kv.vault.azure.net/secrets/username"}, - "host": "52.225.178.34", "shareName": "smbshare000015"}}' + "host": "40.89.111.31", "shareName": "smbshare000012"}}' headers: Accept: - application/json @@ -9616,52 +7436,48 @@ interactions: Connection: - keep-alive Content-Length: - - '321' + - '320' Content-Type: - application/json ParameterSetName: - -g --storage-mover-name -n --description --share-name --username-uri --password-uri --host User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:11.8284292Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '833' + - '848' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:11 GMT + - Tue, 02 Jul 2024 09:26:35 GMT etag: - - '"790083d0-0000-3300-0000-68bf0f980000"' + - '"aa002576-0000-3400-0000-6683c7cb0000"' expires: - '-1' mise-correlation-id: - - c1c2aa91-4cea-4855-84fd-46690f3ba201 + - d4ebde2e-a326-4367-afa6-3b16b21621e9 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/5e4e6a03-da74-41ea-bdf5-cbe6ce288edd + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/6ac3e756-f39b-4354-81ba-aafe597df2d3 x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: EC48C01CE7E54A2E894F8EF9FAD05CDF Ref B: PNQ231110907025 Ref C: 2025-09-08T17:17:11Z' + - '199' status: code: 200 message: OK @@ -9679,41 +7495,37 @@ interactions: ParameterSetName: - -g --storage-mover-name -n User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:11.8284292Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '833' + - '848' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:12 GMT + - Tue, 02 Jul 2024 09:26:37 GMT etag: - - '"790083d0-0000-3300-0000-68bf0f980000"' + - '"aa002576-0000-3400-0000-6683c7cb0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/50c86fbb-23b4-4620-bd22-3a7a0cb519d1 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/6a9109f2-626a-4cd7-819d-2c03c8418200 x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 2DFDD30293FB4BDB99E0967797E730A8 Ref B: PNQ231110909042 Ref C: 2025-09-08T17:17:12Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -9731,48 +7543,44 @@ interactions: ParameterSetName: - -g --storage-mover-name -n --username-uri --password-uri --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:11.8284292Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '833' + - '848' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:13 GMT + - Tue, 02 Jul 2024 09:26:39 GMT etag: - - '"790083d0-0000-3300-0000-68bf0f980000"' + - '"aa002576-0000-3400-0000-6683c7cb0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/0eb59a8a-fe73-4f1c-9393-c331596f4d7c + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/ec9eb7ba-1d57-4387-ab57-bbecdedec0db x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 536C16839DAA42089BD41F1527817AC6 Ref B: PNQ231110909036 Ref C: 2025-09-08T17:17:13Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK - request: body: '{"properties": {"description": "endpointSmbDescUpdate", "endpointType": "SmbMount", "credentials": {"passwordUri": "", "type": "AzureKeyVaultSmb", "usernameUri": - ""}, "host": "52.225.178.34", "shareName": "smbshare000015"}}' + ""}, "host": "40.89.111.31", "shareName": "smbshare000012"}}' headers: Accept: - application/json @@ -9783,51 +7591,47 @@ interactions: Connection: - keep-alive Content-Length: - - '223' + - '222' Content-Type: - application/json ParameterSetName: - -g --storage-mover-name -n --username-uri --password-uri --description User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:14.1261871Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '701' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:13 GMT + - Tue, 02 Jul 2024 09:26:40 GMT etag: - - '"790095d0-0000-3300-0000-68bf0f9a0000"' + - '"aa008276-0000-3400-0000-6683c7d00000"' expires: - '-1' mise-correlation-id: - - 71e7965e-d3ea-4903-bfd9-b8d2905c89a6 + - 313a9004-b614-454a-b170-7f57af933aec pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/1efb1cdd-6a9e-4d2d-9e1a-039a26bf89d6 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/833d4784-9ee2-4d03-8d71-91a9aeeff295 x-ms-providerhub-traffic: - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: B21377A4519848628797B03FB18F6326 Ref B: PNQ231110907025 Ref C: 2025-09-08T17:17:13Z' + - '199' status: code: 200 message: OK @@ -9845,39 +7649,35 @@ interactions: ParameterSetName: - -g --storage-mover-name User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2024-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:56.4528926Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:02.0192748Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010","name":"endpoint_nfs000010","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:14:53.0158186Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:14:55.7349911Z"},"properties":{"host":"20.252.128.195","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:14.1261871Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:10.9864383Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '3939' + - '3140' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:14 GMT + - Tue, 02 Jul 2024 09:26:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/16810767-42b5-45eb-93e8-051238943cd2 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/f82e91b0-cc30-46c3-bca6-1ff89c1f4d27 x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: E915037B26174F72ACEE5B00BB8CCEAB Ref B: PNQ231110907040 Ref C: 2025-09-08T17:17:15Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' status: code: 200 message: OK @@ -9897,9 +7697,9 @@ interactions: ParameterSetName: - -g --storage-mover-name -n -y User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: DELETE - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000010?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 response: body: string: '' @@ -9909,29 +7709,23 @@ interactions: content-length: - '0' date: - - Mon, 08 Sep 2025 17:17:16 GMT + - Tue, 02 Jul 2024 09:26:43 GMT expires: - '-1' - mise-correlation-id: - - ae9650ce-2143-4322-8262-041fb613b54d pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/1148b2cb-cc4e-4336-90e8-ac59d97ac851 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/c2e49b20-dfaa-40b7-afd7-2909adbb5932 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-deletes: - - '799' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 01EA31CFC4EC4D7494ACEBDADC29EF35 Ref B: PNQ231110907029 Ref C: 2025-09-08T17:17:15Z' + - '199' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '2999' status: code: 200 message: OK @@ -9949,39 +7743,35 @@ interactions: ParameterSetName: - -g --storage-mover-name User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2024-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:52.7185008Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:12:56.4528926Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:12:58.8748682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:02.0192748Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000011","name":"endpoint_smb000011","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:17:11.8284292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:17:14.1261871Z"},"properties":{"host":"52.225.178.34","shareName":"smbshare000015","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '3265' + - '2452' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Sep 2025 17:17:16 GMT + - Tue, 02 Jul 2024 09:26:45 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/88079430-5cb5-499d-9817-748d0e620778 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e/eastus2euap/e06e2b27-b50a-4519-a45c-22932eb71c8e x-ms-providerhub-traffic: - 'True' - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 0FD5C06020D1406EB84DE7EE05E197C6 Ref B: PNQ231110909029 Ref C: 2025-09-08T17:17:16Z' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' status: code: 200 message: OK From 3dae243e6906f2bb035d50579b1bd8bc1df17c13 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 01:53:32 +0530 Subject: [PATCH 08/20] NFS endpoint scenarios recording --- ...test_storage_mover_endpoint_scenarios.yaml | 228 ++++++++++++++++++ 1 file changed, 228 insertions(+) diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml index 3225d24ba3e..cfb01d1db09 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml @@ -7635,6 +7635,234 @@ interactions: status: code: 200 message: OK +- request: + body: '{"properties": {"description": "endpointNFSFileShareDesc", "endpointType": + "AzureStorageNfsFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint create-for-storage-nfs-file-share + Connection: + - keep-alive + Content-Length: + - '312' + Content-Type: + - application/json + ParameterSetName: + - -g --storage-mover-name -n --file-share-name --storage-account-id --description + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '853' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:03 GMT + etag: + - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' + expires: + - '-1' + mise-correlation-id: + - dd174ca8-0186-4593-b1df-8617104537fe + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/8cda0051-2980-4684-a482-7508da9c3ed5 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E2BCB33E44D34F08949F16D5F40BA1E5 Ref B: PNQ231110909042 Ref C: 2025-09-08T17:13:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint show + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '853' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:03 GMT + etag: + - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/5d6bcfcf-ac5c-41aa-948d-ce0e58f4d1b4 + x-ms-providerhub-traffic: + - 'True' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B4738D12CBEE49DEA82DFA39A7D508B3 Ref B: PNQ231110907031 Ref C: 2025-09-08T17:13:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint update-for-storage-nfs-file-share + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n --description + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '853' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:04 GMT + etag: + - '"7900d2c9-0000-3300-0000-68bf0e9f0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/23adba93-5eb3-4379-9d53-3ec335d53db5 + x-ms-providerhub-traffic: + - 'True' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 82A023A474584FC8AFD53FD5B5E7734B Ref B: PNQ231110909034 Ref C: 2025-09-08T17:13:04Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"description": "endpointNFSFileShareDescUpdate", "endpointType": + "AzureStorageNfsFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint update-for-storage-nfs-file-share + Connection: + - keep-alive + Content-Length: + - '318' + Content-Type: + - application/json + ParameterSetName: + - -g --storage-mover-name -n --description + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '859' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Sep 2025 17:13:05 GMT + etag: + - '"7900e7c9-0000-3300-0000-68bf0ea20000"' + expires: + - '-1' + mise-correlation-id: + - 21fb7ae4-6472-4f52-8a98-563c9f31bae3 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/954d41d0-c312-4dce-8fe8-68c94a248ac2 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E02679798B10465DAFECC530B3BB7EE9 Ref B: PNQ231110909029 Ref C: 2025-09-08T17:13:05Z' + status: + code: 200 + message: OK - request: body: null headers: From 2a43a1b3501126cccd80ea46bf665da6784ecc38 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 01:59:16 +0530 Subject: [PATCH 09/20] azdev style storage-mover PASSED --- src/storage-mover/azext_storage_mover/commands.py | 2 +- src/storage-mover/azext_storage_mover/custom.py | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/commands.py b/src/storage-mover/azext_storage_mover/commands.py index 9f6d9db0c43..30ad030b05d 100644 --- a/src/storage-mover/azext_storage_mover/commands.py +++ b/src/storage-mover/azext_storage_mover/commands.py @@ -21,7 +21,7 @@ def load_command_table(self, _): # pylint: disable=unused-argument 'endpoint_create_for_storage_nfs_file_share') g.custom_command('create-for-nfs', 'endpoint_create_for_nfs') g.custom_command('create-for-smb', 'endpoint_create_for_smb') - g.custom_command('create-for-multi-cloud-connector', + g.custom_command('create-for-multi-cloud-connector', 'endpoint_create_for_multi_cloud_connector') g.custom_command('update-for-storage-container', 'endpoint_update_for_storage_container') g.custom_command('update-for-storage-smb-file-share', diff --git a/src/storage-mover/azext_storage_mover/custom.py b/src/storage-mover/azext_storage_mover/custom.py index e61373a390b..814b9d379a3 100644 --- a/src/storage-mover/azext_storage_mover/custom.py +++ b/src/storage-mover/azext_storage_mover/custom.py @@ -104,8 +104,8 @@ def endpoint_update_for_storage_nfs_file_share(cmd, endpoint_name, resource_grou def _get_args_for_endpoint_for_multi_cloud_connector(endpoint_name, resource_group, storage_mover_name, - multi_cloud_connector_id=None, aws_s3_bucket_id=None, - description=None): + multi_cloud_connector_id=None, aws_s3_bucket_id=None, + description=None): args = { "endpoint_name": endpoint_name, "resource_group": resource_group, "storage_mover_name": storage_mover_name, "description": description, @@ -118,18 +118,18 @@ def _get_args_for_endpoint_for_multi_cloud_connector(endpoint_name, resource_gro def endpoint_create_for_multi_cloud_connector(cmd, endpoint_name, resource_group, storage_mover_name, - multi_cloud_connector_id, aws_s3_bucket_id, description=None): + multi_cloud_connector_id, aws_s3_bucket_id, description=None): Create_Endpoint = Create(cmd.loader) args = _get_args_for_endpoint_for_multi_cloud_connector(endpoint_name, resource_group, storage_mover_name, - multi_cloud_connector_id, aws_s3_bucket_id, description) + multi_cloud_connector_id, aws_s3_bucket_id, description) return Create_Endpoint(args) def endpoint_update_for_multi_cloud_connector(cmd, endpoint_name, resource_group, storage_mover_name, - description=None): + description=None): Update_Endpoint = Update(cmd.loader) args = _get_args_for_endpoint_for_multi_cloud_connector(endpoint_name, resource_group, storage_mover_name, - description=description) + description=description) return Update_Endpoint(args) From a956bb1b4e0efb57ea7661d793c5db788486ac8d Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 02:06:59 +0530 Subject: [PATCH 10/20] Bumped version and added updates in HISTORY.rst --- src/storage-mover/HISTORY.rst | 6 ++++++ src/storage-mover/setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/storage-mover/HISTORY.rst b/src/storage-mover/HISTORY.rst index baff5168dd2..f1675354f5d 100644 --- a/src/storage-mover/HISTORY.rst +++ b/src/storage-mover/HISTORY.rst @@ -3,6 +3,12 @@ Release History =============== +1.2.0 +++++++ +* Update to 2025-07-01 GA api version +* Support `az storage-mover endpoint create-for-storage-nfs-file-share` `az storage-mover endpoint update-for-storage-nfs-file-share` commands. +* Support `az storage-mover endpoint create-for-multi-cloud-connector` `az storage-mover endpoint update-for-multi-cloud-connector` commands. + 1.1.0 ++++++ * Update to 2024-07-01 GA api version diff --git a/src/storage-mover/setup.py b/src/storage-mover/setup.py index 0f44886daea..ebf9c5044a5 100644 --- a/src/storage-mover/setup.py +++ b/src/storage-mover/setup.py @@ -10,7 +10,7 @@ # HISTORY.rst entry. -VERSION = '1.1.0' +VERSION = '1.2.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From faf9cf1cfc5613dfb04f77df51cdc0b6efa63982 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 02:13:58 +0530 Subject: [PATCH 11/20] fix azdev Linter --- src/storage-mover/azext_storage_mover/_params.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/storage-mover/azext_storage_mover/_params.py b/src/storage-mover/azext_storage_mover/_params.py index 338e2254cb7..091150c1fdb 100644 --- a/src/storage-mover/azext_storage_mover/_params.py +++ b/src/storage-mover/azext_storage_mover/_params.py @@ -44,6 +44,11 @@ def load_arguments(self, _): # pylint: disable=unused-argument c.argument('file_share_name', help='The name of the Azure Storage file share.') c.argument('storage_account_resource_id', options_list=('--storage-account-id'), help='The Azure Resource ID of the storage account that is the target destination.') + + with self.argument_context('storage-mover endpoint create-for-multi-cloud-connector') as c: + c.argument('aws_s3_bucket_id', help='The ID of the AWS S3 bucket.') + c.argument('multi_cloud_connector_id', options_list=('--connector-id'), + help='The Azure Resource ID of the multi-cloud connector resource associated with the AWS account.') with self.argument_context('storage-mover endpoint create-for-smb') as c: c.argument('host', help='The host name or IP address of the server exporting the file system.') From b5c53f6f740dd837b585122dbcddc0cc466a77f8 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 02:21:13 +0530 Subject: [PATCH 12/20] azdev linter and style fix --- src/storage-mover/azext_storage_mover/_params.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/_params.py b/src/storage-mover/azext_storage_mover/_params.py index 091150c1fdb..ffc2540d874 100644 --- a/src/storage-mover/azext_storage_mover/_params.py +++ b/src/storage-mover/azext_storage_mover/_params.py @@ -44,10 +44,10 @@ def load_arguments(self, _): # pylint: disable=unused-argument c.argument('file_share_name', help='The name of the Azure Storage file share.') c.argument('storage_account_resource_id', options_list=('--storage-account-id'), help='The Azure Resource ID of the storage account that is the target destination.') - + with self.argument_context('storage-mover endpoint create-for-multi-cloud-connector') as c: c.argument('aws_s3_bucket_id', help='The ID of the AWS S3 bucket.') - c.argument('multi_cloud_connector_id', options_list=('--connector-id'), + c.argument('multi_cloud_connector_id', options_list=('--connector-id', '--multi_cloud_connector_id'), help='The Azure Resource ID of the multi-cloud connector resource associated with the AWS account.') with self.argument_context('storage-mover endpoint create-for-smb') as c: From ed1c2a4f609eb97a747f7e128a1df91cebd1de14 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 02:26:46 +0530 Subject: [PATCH 13/20] azdev lint fix --- src/storage-mover/azext_storage_mover/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage-mover/azext_storage_mover/_params.py b/src/storage-mover/azext_storage_mover/_params.py index ffc2540d874..8bcd2abf6af 100644 --- a/src/storage-mover/azext_storage_mover/_params.py +++ b/src/storage-mover/azext_storage_mover/_params.py @@ -47,7 +47,7 @@ def load_arguments(self, _): # pylint: disable=unused-argument with self.argument_context('storage-mover endpoint create-for-multi-cloud-connector') as c: c.argument('aws_s3_bucket_id', help='The ID of the AWS S3 bucket.') - c.argument('multi_cloud_connector_id', options_list=('--connector-id', '--multi_cloud_connector_id'), + c.argument('multi_cloud_connector_id', options_list=('--connector-id', '--multi-cloud-connector-id'), help='The Azure Resource ID of the multi-cloud connector resource associated with the AWS account.') with self.argument_context('storage-mover endpoint create-for-smb') as c: From 9944ab558c704ef39fa87120ec742d3203bc81e5 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 02:31:18 +0530 Subject: [PATCH 14/20] edit HISTORY.rst as per the guidlines --- src/storage-mover/HISTORY.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/storage-mover/HISTORY.rst b/src/storage-mover/HISTORY.rst index f1675354f5d..cdea41dcaa6 100644 --- a/src/storage-mover/HISTORY.rst +++ b/src/storage-mover/HISTORY.rst @@ -4,10 +4,9 @@ Release History =============== 1.2.0 -++++++ -* Update to 2025-07-01 GA api version -* Support `az storage-mover endpoint create-for-storage-nfs-file-share` `az storage-mover endpoint update-for-storage-nfs-file-share` commands. -* Support `az storage-mover endpoint create-for-multi-cloud-connector` `az storage-mover endpoint update-for-multi-cloud-connector` commands. ++++++ +* Updated to the 2025-07-01 GA API version. +* Add new endpoints for storage-nfs-file-share and multi-cloud-connector. 1.1.0 ++++++ From 54e391589331c6d86fd77d4cac34785504ac7a8d Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 11:46:31 +0530 Subject: [PATCH 15/20] updated API version in the test recordings --- .../test_storage_mover_agent_scenarios.yaml | 32 +++++++-------- ...agent_upload_limit_schedule_scenarios.yaml | 12 +++--- ...test_storage_mover_endpoint_scenarios.yaml | 40 +++++++++---------- ...torage_mover_job_definition_scenarios.yaml | 28 ++++++------- .../test_storage_mover_project_scenarios.yaml | 30 +++++++------- .../test_storage_mover_scenarios.yaml | 28 ++++++------- 6 files changed, 85 insertions(+), 85 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_agent_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_agent_scenarios.yaml index bf4b6b16c56..3c6e5ace2bc 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_agent_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_agent_scenarios.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-05T09:08:54.8744131Z","lastModifiedBy":"aed824f0-6446-4ef9-9e17-98b0157c09dc","lastModifiedByType":"Application","lastModifiedAt":"2024-06-05T09:15:38.1799468Z"},"properties":{"agentVersion":"3.1.3195-PullRequest-debug_amd64:3.1.3195-PullRequest-debug_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"8544c197-19af-0042-b8ca-b48baf91ef32","timeZone":"UTC","localIPAddress":"172.24.39.74","memoryInMB":1329,"numberOfCores":1,"uptimeInSeconds":173858,"lastStatusUpdate":"2024-06-05T09:15:37.2599997Z","agentStatus":"Online","provisioningState":"Succeeded"}}' @@ -65,7 +65,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents?api-version=2025-07-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-05T09:08:54.8744131Z","lastModifiedBy":"aed824f0-6446-4ef9-9e17-98b0157c09dc","lastModifiedByType":"Application","lastModifiedAt":"2024-06-05T09:15:38.1799468Z"},"properties":{"agentVersion":"3.1.3195-PullRequest-debug_amd64:3.1.3195-PullRequest-debug_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"8544c197-19af-0042-b8ca-b48baf91ef32","timeZone":"UTC","localIPAddress":"172.24.39.74","memoryInMB":1329,"numberOfCores":1,"uptimeInSeconds":173858,"lastStatusUpdate":"2024-06-05T09:15:37.2599997Z","agentStatus":"Online","provisioningState":"Succeeded"}}]}' @@ -113,7 +113,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-05T09:08:54.8744131Z","lastModifiedBy":"aed824f0-6446-4ef9-9e17-98b0157c09dc","lastModifiedByType":"Application","lastModifiedAt":"2024-06-05T09:15:38.1799468Z"},"properties":{"agentVersion":"3.1.3195-PullRequest-debug_amd64:3.1.3195-PullRequest-debug_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"8544c197-19af-0042-b8ca-b48baf91ef32","timeZone":"UTC","localIPAddress":"172.24.39.74","memoryInMB":1329,"numberOfCores":1,"uptimeInSeconds":173858,"lastStatusUpdate":"2024-06-05T09:15:37.2599997Z","agentStatus":"Online","provisioningState":"Succeeded"}}' @@ -168,7 +168,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-05T09:08:54.8744131Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-05T09:16:08.4076684Z"},"properties":{"agentVersion":"3.1.3195-PullRequest-debug_amd64:3.1.3195-PullRequest-debug_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"8544c197-19af-0042-b8ca-b48baf91ef32","timeZone":"UTC","localIPAddress":"172.24.39.74","memoryInMB":1329,"numberOfCores":1,"uptimeInSeconds":173886,"lastStatusUpdate":"2024-06-05T09:16:05.283593Z","agentStatus":"Online","description":"123","provisioningState":"Succeeded"}}' @@ -222,13 +222,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 cache-control: - no-cache content-length: @@ -242,7 +242,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 mise-correlation-id: - fabd67f9-1097-4c64-a5b0-2f08edfed57d pragma: @@ -278,13 +278,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7","name":"febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","status":"Deleting","startTime":"2024-06-05T09:16:10.8299255Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531757712670688&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=ZI8Lp9gDYGxo41bn4AdLTQCTJ03k20pex0atdkUP1LW3v_THt61Dh-wZnJ0dbBaSUHbfS2bCbcjnTEzBfwN1zx2zygz2zIsXSutYOuPQ1Ak9ZSbobJ6o2YIetFHE27VXeXDKTV9rn-6BPDV6stHOKjy4JGeEhJE_--FiRLySEGwV1cMxVSFRruTApIGvK3Ethe6mMx4UVaD_A-PHkriWnBjIuJDAtw8IjrWGHRmbPr3acOgfOPV1R6AM6u1ympY-CfA5jXJgTXg-nA70p6-TgWoETR5Ix-xsACdLXDQnoaRx3YLtLEyYgtVU4-DQiRUXi7AbXb2KQItnvryq3SsO9Q&h=5R4cfHQz5Lmq-aAH8uLUqHrUxUhxqCu4tVe0oFXsr_w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531757712670688&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=ZI8Lp9gDYGxo41bn4AdLTQCTJ03k20pex0atdkUP1LW3v_THt61Dh-wZnJ0dbBaSUHbfS2bCbcjnTEzBfwN1zx2zygz2zIsXSutYOuPQ1Ak9ZSbobJ6o2YIetFHE27VXeXDKTV9rn-6BPDV6stHOKjy4JGeEhJE_--FiRLySEGwV1cMxVSFRruTApIGvK3Ethe6mMx4UVaD_A-PHkriWnBjIuJDAtw8IjrWGHRmbPr3acOgfOPV1R6AM6u1ympY-CfA5jXJgTXg-nA70p6-TgWoETR5Ix-xsACdLXDQnoaRx3YLtLEyYgtVU4-DQiRUXi7AbXb2KQItnvryq3SsO9Q&h=5R4cfHQz5Lmq-aAH8uLUqHrUxUhxqCu4tVe0oFXsr_w cache-control: - no-cache content-length: @@ -298,7 +298,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531757712827046&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=uiSwjF3a1r27sNDTTlZdox7aLi8xd_gqcoaKVCZiC42Sv9WjGABhfNfKdLXMH7S3uP5mbfwRlhDaBOaPf3bUwql56t1ejJXli5lAtL794INiGCL91K-1hsf8mT6hUVBbB2HibL3V0Fl3itrwDMX48MCEOsXA7-PXDuXUdNZeqxEaMiarEAWPt-pOh-ggRJ--f1vni82pa744ENMYjZX5GBuFUhFkEP5p-xlVJYCsJMhz4tZAneLLsardvSe9SBe-XBXn5GpJvgBKsZq8H_ptnuF2SZtZrKlSgA7hJ6aqcl4a0yA53NtjhvRTtTE3OMSvWJFyrvxTCQnbPAVxXY3ByA&h=FcfuBAHz-h24G6hwWnhJknIQNnVpHiclxXRmA9JkV8I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531757712827046&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=uiSwjF3a1r27sNDTTlZdox7aLi8xd_gqcoaKVCZiC42Sv9WjGABhfNfKdLXMH7S3uP5mbfwRlhDaBOaPf3bUwql56t1ejJXli5lAtL794INiGCL91K-1hsf8mT6hUVBbB2HibL3V0Fl3itrwDMX48MCEOsXA7-PXDuXUdNZeqxEaMiarEAWPt-pOh-ggRJ--f1vni82pa744ENMYjZX5GBuFUhFkEP5p-xlVJYCsJMhz4tZAneLLsardvSe9SBe-XBXn5GpJvgBKsZq8H_ptnuF2SZtZrKlSgA7hJ6aqcl4a0yA53NtjhvRTtTE3OMSvWJFyrvxTCQnbPAVxXY3ByA&h=FcfuBAHz-h24G6hwWnhJknIQNnVpHiclxXRmA9JkV8I pragma: - no-cache strict-transport-security: @@ -328,13 +328,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7","name":"febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","status":"Deleting","startTime":"2024-06-05T09:16:10.8299255Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531758016420164&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=E1z8llkSlTINfXnzzEbHb68zTagK9QQYMQU4si94LgdVii_B8pVe0BR3jAIO_fbCnHZhI5RrQkuKpgYPb5oQ-Vp0Pu-R2oYGJkHkkLUN8x7zBUYN3oT8jK8KdqOk9IQEYdx8hdYDNcoKTFrkGsTEFTaAchhwrT9sqLuOfHLeHvok_s6QMsxQ1Wk25csG5EAjqX7RwpEcwCm8uuWMCZCwds5_s1Z-EYM0h0d1UjtSN8fd34HWgEQ_jtsH33K-FsePnW0cxdJj84TOtpaaCDqegBRibCEqiL3dvy_MfJNsYFqkbPPMCpkDpe4OZmR6bVIBi-Vu0zQsOELjVoOfpQ7KOw&h=4asUFWyRWYm1nCbDZdk3rODEsbsuK-mFXKWtHdWwtfQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531758016420164&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=E1z8llkSlTINfXnzzEbHb68zTagK9QQYMQU4si94LgdVii_B8pVe0BR3jAIO_fbCnHZhI5RrQkuKpgYPb5oQ-Vp0Pu-R2oYGJkHkkLUN8x7zBUYN3oT8jK8KdqOk9IQEYdx8hdYDNcoKTFrkGsTEFTaAchhwrT9sqLuOfHLeHvok_s6QMsxQ1Wk25csG5EAjqX7RwpEcwCm8uuWMCZCwds5_s1Z-EYM0h0d1UjtSN8fd34HWgEQ_jtsH33K-FsePnW0cxdJj84TOtpaaCDqegBRibCEqiL3dvy_MfJNsYFqkbPPMCpkDpe4OZmR6bVIBi-Vu0zQsOELjVoOfpQ7KOw&h=4asUFWyRWYm1nCbDZdk3rODEsbsuK-mFXKWtHdWwtfQ cache-control: - no-cache content-length: @@ -348,7 +348,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531758016576485&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=Z0DrDb23xojdC4VC9T1RiniljvF0Ipt3E_gmYesWdXzyP09_TJW8IyZRyAdWYXD32_Mvi3F6zJXHJKBavF2ws0VEFQUqw1iUz6ZGDhv9SnKkhtHYsPI87PRp90Jaq5uXaa5sTriKPOPWTXU4kACjGK5xVkPbI1A8FOX8Bf3nQPaf2r87mHx-dZtX0EyM84lIfClsXHeBDL60hUbeVUPFcrSs7o8S_Ca-dAPbklxfX-Os2XkG1uiLeqUYNfoDWezSAChlek3tZ1noMAPkdUzNKf6qNFnEqN2R3vd3EIKAytCiijkoQc1UecNYhoFp96pBtV7PiIjFOVapQ7z0JeIYUA&h=Vg_OAN1SqCIz-BvW9sZ17aCcqaXnHumcECMqZBVMHIE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531758016576485&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=Z0DrDb23xojdC4VC9T1RiniljvF0Ipt3E_gmYesWdXzyP09_TJW8IyZRyAdWYXD32_Mvi3F6zJXHJKBavF2ws0VEFQUqw1iUz6ZGDhv9SnKkhtHYsPI87PRp90Jaq5uXaa5sTriKPOPWTXU4kACjGK5xVkPbI1A8FOX8Bf3nQPaf2r87mHx-dZtX0EyM84lIfClsXHeBDL60hUbeVUPFcrSs7o8S_Ca-dAPbklxfX-Os2XkG1uiLeqUYNfoDWezSAChlek3tZ1noMAPkdUzNKf6qNFnEqN2R3vd3EIKAytCiijkoQc1UecNYhoFp96pBtV7PiIjFOVapQ7z0JeIYUA&h=Vg_OAN1SqCIz-BvW9sZ17aCcqaXnHumcECMqZBVMHIE pragma: - no-cache strict-transport-security: @@ -378,7 +378,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7","name":"febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","status":"Succeeded","startTime":"2024-06-05T09:16:10.8299255Z","endTime":"2024-06-05T09:17:08.7260511Z","properties":null}' @@ -424,7 +424,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2024-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7?api-version=2025-07-01&t=638531757709077222&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=FoRKp_XXjmtImeyC9t7g7NhgemJ-IJA81_ogUZWlEdCYLXpt306-Ukj5-5P8VRi0tmCMOISpF3qEIj4kCogZWmhF9xiisDPbhpl9AU-3Lm3mSN_WuuI6hQTasWZ6zxKLL2D4qAoi_k_PtsODyjo53kbkrIqAIPFd_ZtxJy73VDBvPTmn5XFB5jEzIWw7Pr24waxbnhok8EPBbZBIkuHpWayLjEwoqgRbR3xnlVgRHUFoWZFQconSk1ggR21i_qH3udYR-n2QGNOBo7vjd-3bL419hUglTtCJ69eq-YH3zy9KFpAVE-CSx6zuYwYczTkLd1lJTtPw0CS5aX4wv0eShA&h=eOcF_U4-Jy61Zr89EUP9N_k4hAs2L_vosnpAQmi_iJ4 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7","name":"febc71ca-1f5c-4253-a298-68b0d8fd71d8*16A7FCED3F76D28F68F6ADB20FD7A50A16BA86A070BF805E9E0235C76101CBF7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","status":"Succeeded","startTime":"2024-06-05T09:16:10.8299255Z","endTime":"2024-06-05T09:17:08.7260511Z","properties":null}' @@ -470,7 +470,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents?api-version=2025-07-01 response: body: string: '{"value":[]}' diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_agent_upload_limit_schedule_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_agent_upload_limit_schedule_scenarios.yaml index 22ef9cf0b34..793b8dc7a01 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_agent_upload_limit_schedule_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_agent_upload_limit_schedule_scenarios.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-20T07:04:43.8644142Z","lastModifiedBy":"aed824f0-6446-4ef9-9e17-98b0157c09dc","lastModifiedByType":"Application","lastModifiedAt":"2024-06-20T08:07:57.7910487Z"},"properties":{"agentVersion":"3.1.593_amd64:3.1.593_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"54276a9c-c322-1042-b0da-0ed83f8bd524","timeZone":"UTC","localIPAddress":"192.168.55.117","memoryInMB":1580,"numberOfCores":1,"uptimeInSeconds":253110,"lastStatusUpdate":"2024-06-20T08:07:55.1806585Z","agentStatus":"Online","provisioningState":"Succeeded"}}' @@ -72,7 +72,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-20T07:04:43.8644142Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-20T08:08:06.7477162Z"},"properties":{"agentVersion":"3.1.593_amd64:3.1.593_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"54276a9c-c322-1042-b0da-0ed83f8bd524","uploadLimitSchedule":{"weeklyRecurrences":[{"limitInMbps":20,"days":["Monday","Wednesday"],"startTime":{"hour":10,"minute":0},"endTime":{"hour":12,"minute":30}}]},"timeZone":"UTC","localIPAddress":"192.168.55.117","memoryInMB":1580,"numberOfCores":1,"uptimeInSeconds":253110,"lastStatusUpdate":"2024-06-20T08:07:55.1806585Z","agentStatus":"Online","provisioningState":"Succeeded"}}' @@ -124,7 +124,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-20T07:04:43.8644142Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-20T08:08:06.7477162Z"},"properties":{"agentVersion":"3.1.593_amd64:3.1.593_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"54276a9c-c322-1042-b0da-0ed83f8bd524","uploadLimitSchedule":{"weeklyRecurrences":[{"limitInMbps":20,"days":["Monday","Wednesday"],"startTime":{"hour":10,"minute":0},"endTime":{"hour":12,"minute":30}}]},"timeZone":"UTC","localIPAddress":"192.168.55.117","memoryInMB":1580,"numberOfCores":1,"uptimeInSeconds":253110,"lastStatusUpdate":"2024-06-20T08:07:55.1806585Z","agentStatus":"Online","provisioningState":"Succeeded"}}' @@ -183,7 +183,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-20T07:04:43.8644142Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-20T08:08:10.5680652Z"},"properties":{"agentVersion":"3.1.593_amd64:3.1.593_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"54276a9c-c322-1042-b0da-0ed83f8bd524","uploadLimitSchedule":{"weeklyRecurrences":[{"limitInMbps":20,"days":["Monday","Wednesday"],"startTime":{"hour":10,"minute":0},"endTime":{"hour":12,"minute":30}},{"limitInMbps":40,"days":["Tuesday","Thursday"],"startTime":{"hour":15,"minute":30},"endTime":{"hour":16,"minute":0}}]},"timeZone":"UTC","localIPAddress":"192.168.55.117","memoryInMB":1580,"numberOfCores":1,"uptimeInSeconds":253110,"lastStatusUpdate":"2024-06-20T08:07:55.1806585Z","agentStatus":"Online","provisioningState":"Succeeded"}}' @@ -235,7 +235,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-20T07:04:43.8644142Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-20T08:08:10.5680652Z"},"properties":{"agentVersion":"3.1.593_amd64:3.1.593_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"54276a9c-c322-1042-b0da-0ed83f8bd524","uploadLimitSchedule":{"weeklyRecurrences":[{"limitInMbps":20,"days":["Monday","Wednesday"],"startTime":{"hour":10,"minute":0},"endTime":{"hour":12,"minute":30}},{"limitInMbps":40,"days":["Tuesday","Thursday"],"startTime":{"hour":15,"minute":30},"endTime":{"hour":16,"minute":0}}]},"timeZone":"UTC","localIPAddress":"192.168.55.117","memoryInMB":1580,"numberOfCores":1,"uptimeInSeconds":253110,"lastStatusUpdate":"2024-06-20T08:07:55.1806585Z","agentStatus":"Online","provisioningState":"Succeeded"}}' @@ -290,7 +290,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","name":"agent2","type":"microsoft.storagemover/storagemovers/agents","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-20T07:04:43.8644142Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-20T08:08:13.7789119Z"},"properties":{"agentVersion":"3.1.593_amd64:3.1.593_amd64","arcResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.HybridCompute/machines/agent2","arcVmUuid":"54276a9c-c322-1042-b0da-0ed83f8bd524","timeZone":"UTC","localIPAddress":"192.168.55.117","memoryInMB":1580,"numberOfCores":1,"uptimeInSeconds":253110,"lastStatusUpdate":"2024-06-20T08:07:55.1806585Z","agentStatus":"Online","provisioningState":"Succeeded"}}' diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml index cfb01d1db09..f3a72ab6cf6 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml @@ -112,7 +112,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003","name":"storage-mover000003","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:19.2132543Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:19.2132543Z"},"properties":{"description":"MoverDesc","provisioningState":"Succeeded"}}' @@ -211,7 +211,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' @@ -263,7 +263,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' @@ -311,7 +311,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:24.2952812Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDesc","provisioningState":"Succeeded"}}' @@ -364,7 +364,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' @@ -465,7 +465,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' @@ -517,7 +517,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' @@ -565,7 +565,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:33.5903356Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDesc","provisioningState":"Succeeded"}}' @@ -619,7 +619,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}}' @@ -3953,7 +3953,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' @@ -4005,7 +4005,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' @@ -4053,7 +4053,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:06.0817301Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDesc","provisioningState":"Succeeded"}}' @@ -4106,7 +4106,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:10.9864383Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}}' @@ -7445,7 +7445,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' @@ -7497,7 +7497,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' @@ -7545,7 +7545,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:35.1096863Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"usernameUri":"https://smb-demo-kv.vault.azure.net/secrets/username","passwordUri":"https://smb-demo-kv.vault.azure.net/secrets/password","type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDesc","provisioningState":"Succeeded"}}' @@ -7599,7 +7599,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}' @@ -7879,7 +7879,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2025-07-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:10.9864383Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' @@ -7927,7 +7927,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007?api-version=2025-07-01 response: body: string: '' @@ -7973,7 +7973,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2025-07-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_job_definition_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_job_definition_scenarios.yaml index 8e8fdf7aeee..d710dd17b5b 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_job_definition_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_job_definition_scenarios.yaml @@ -19,7 +19,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject","name":"testproject","type":"microsoft.storagemover/storagemovers/projects","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T08:24:48.2516059Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T08:24:48.2516059Z"},"properties":{"description":"ProjectDesc","provisioningState":"Succeeded"}}' @@ -3726,7 +3726,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","name":"sourceendpoint","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T08:26:46.216006Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T08:26:46.216006Z"},"properties":{"host":"40.74.158.161","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"srcendpointDesc","provisioningState":"Succeeded"}}' @@ -3783,7 +3783,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","name":"targetendpoint","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T08:26:48.6924983Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T08:26:48.6924983Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2","blobContainerName":"targetcontainer","endpointType":"AzureStorageBlobContainer","description":"tgtendpointDesc","provisioningState":"Succeeded"}}' @@ -3842,7 +3842,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition","name":"testdefinition","type":"microsoft.storagemover/storagemovers/projects/jobdefinitions","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T08:26:51.2788334Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T08:26:51.2788334Z"},"properties":{"copyMode":"Additive","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceSubpath":"path1","targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetSubpath":"path2","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","description":"JobDefinitionDescription","provisioningState":"Succeeded"}}' @@ -3894,7 +3894,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition","name":"testdefinition","type":"microsoft.storagemover/storagemovers/projects/jobdefinitions","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T08:26:51.2788334Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T08:26:51.2788334Z"},"properties":{"copyMode":"Additive","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceSubpath":"path1","targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetSubpath":"path2","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","description":"JobDefinitionDescription","provisioningState":"Succeeded"}}' @@ -3942,7 +3942,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition","name":"testdefinition","type":"microsoft.storagemover/storagemovers/projects/jobdefinitions","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T08:26:51.2788334Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T08:26:51.2788334Z"},"properties":{"copyMode":"Additive","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceSubpath":"path1","targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetSubpath":"path2","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","description":"JobDefinitionDescription","provisioningState":"Succeeded"}}' @@ -3996,7 +3996,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition","name":"testdefinition","type":"microsoft.storagemover/storagemovers/projects/jobdefinitions","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T08:26:51.2788334Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T08:26:56.0264802Z"},"properties":{"copyMode":"Mirror","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceSubpath":"path1","targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetSubpath":"path2","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","description":"JobDefinitionDescription2","provisioningState":"Succeeded"}}' @@ -4048,7 +4048,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions?api-version=2025-07-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition","name":"testdefinition","type":"microsoft.storagemover/storagemovers/projects/jobdefinitions","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T08:26:51.2788334Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T08:26:56.0264802Z"},"properties":{"copyMode":"Mirror","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceSubpath":"path1","targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetSubpath":"path2","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","description":"JobDefinitionDescription2","provisioningState":"Succeeded"}}]}' @@ -4096,7 +4096,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/startJob?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/startJob?api-version=2025-07-01 response: body: string: '{"jobRunResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns/e0be740d-38cb-4e03-a4d7-3d04d7707d3c"}' @@ -4146,7 +4146,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns?api-version=2025-07-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns/e0be740d-38cb-4e03-a4d7-3d04d7707d3c","name":"e0be740d-38cb-4e03-a4d7-3d04d7707d3c","type":"microsoft.storagemover/storagemovers/projects/jobdefinitions/jobruns","systemData":{"createdBy":"aed824f0-6446-4ef9-9e17-98b0157c09dc","createdByType":"Application","createdAt":"2024-06-03T08:27:00.5415842Z","lastModifiedBy":"aed824f0-6446-4ef9-9e17-98b0157c09dc","lastModifiedByType":"Application","lastModifiedAt":"2024-06-03T08:27:00.5415842Z"},"properties":{"status":"Queued","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","lastStatusUpdate":"2024-06-03T08:27:00.3940312Z","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceProperties":{"host":"40.74.158.161","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"srcendpointDesc","provisioningState":"Succeeded"},"targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetProperties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2","blobContainerName":"targetcontainer","endpointType":"AzureStorageBlobContainer","description":"tgtendpointDesc","provisioningState":"Succeeded"},"jobDefinitionProperties":{"copyMode":"Mirror","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceSubpath":"path1","targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetSubpath":"path2","latestJobRunName":"e0be740d-38cb-4e03-a4d7-3d04d7707d3c","latestJobRunResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns/e0be740d-38cb-4e03-a4d7-3d04d7707d3c","latestJobRunStatus":"Queued","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","internalMetadata":{"jobDefinitionId":"dc12b275-a1f3-4259-97c7-19074f2b0de8","lastSuccessfulJobStartTime":0},"description":"JobDefinitionDescription2","provisioningState":"Succeeded"},"provisioningState":"Succeeded"}}]}' @@ -4194,7 +4194,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/stopJob?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/stopJob?api-version=2025-07-01 response: body: string: '{"jobRunResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns/e0be740d-38cb-4e03-a4d7-3d04d7707d3c"}' @@ -4244,7 +4244,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns/e0be740d-38cb-4e03-a4d7-3d04d7707d3c?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns/e0be740d-38cb-4e03-a4d7-3d04d7707d3c?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns/e0be740d-38cb-4e03-a4d7-3d04d7707d3c","name":"e0be740d-38cb-4e03-a4d7-3d04d7707d3c","type":"microsoft.storagemover/storagemovers/projects/jobdefinitions/jobruns","systemData":{"createdBy":"aed824f0-6446-4ef9-9e17-98b0157c09dc","createdByType":"Application","createdAt":"2024-06-03T08:27:00.5415842Z","lastModifiedBy":"aed824f0-6446-4ef9-9e17-98b0157c09dc","lastModifiedByType":"Application","lastModifiedAt":"2024-06-03T08:27:04.8221757Z"},"properties":{"status":"CancelRequested","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","lastStatusUpdate":"2024-06-03T08:27:00.3940312Z","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceProperties":{"host":"40.74.158.161","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"srcendpointDesc","provisioningState":"Succeeded"},"targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetProperties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2","blobContainerName":"targetcontainer","endpointType":"AzureStorageBlobContainer","description":"tgtendpointDesc","provisioningState":"Succeeded"},"jobDefinitionProperties":{"copyMode":"Mirror","sourceName":"sourceendpoint","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/sourceendpoint","sourceSubpath":"path1","targetName":"targetendpoint","targetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/endpoints/targetendpoint","targetSubpath":"path2","latestJobRunName":"e0be740d-38cb-4e03-a4d7-3d04d7707d3c","latestJobRunResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition/jobRuns/e0be740d-38cb-4e03-a4d7-3d04d7707d3c","latestJobRunStatus":"Queued","agentName":"agent2","agentResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/agents/agent2","internalMetadata":{"jobDefinitionId":"dc12b275-a1f3-4259-97c7-19074f2b0de8","lastSuccessfulJobStartTime":0},"description":"JobDefinitionDescription2","provisioningState":"Succeeded"},"provisioningState":"Succeeded"}}' @@ -4294,7 +4294,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions/testdefinition?api-version=2025-07-01 response: body: string: '' @@ -4342,7 +4342,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.StorageMover/storageMovers/teststoragemover2/projects/testproject/jobDefinitions?api-version=2025-07-01 response: body: string: '{"value":[]}' diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_project_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_project_scenarios.yaml index f49ed7e2b4d..6b3c1819dea 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_project_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_project_scenarios.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","name":"storage-mover000002","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:53.8491006Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:53.8491006Z"},"properties":{"description":"MoverDesc","provisioningState":"Succeeded"}}' @@ -76,7 +76,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003","name":"project000003","type":"microsoft.storagemover/storagemovers/projects","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:55.7733467Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:55.7733467Z"},"properties":{"description":"ProjectDesc","provisioningState":"Succeeded"}}' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003","name":"project000003","type":"microsoft.storagemover/storagemovers/projects","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:55.7733467Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:55.7733467Z"},"properties":{"description":"ProjectDesc","provisioningState":"Succeeded"}}' @@ -176,7 +176,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects?api-version=2025-07-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003","name":"project000003","type":"microsoft.storagemover/storagemovers/projects","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:55.7733467Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:55.7733467Z"},"properties":{"description":"ProjectDesc","provisioningState":"Succeeded"}}]}' @@ -222,7 +222,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003","name":"project000003","type":"microsoft.storagemover/storagemovers/projects","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:55.7733467Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:55.7733467Z"},"properties":{"description":"ProjectDesc","provisioningState":"Succeeded"}}' @@ -274,7 +274,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003","name":"project000003","type":"microsoft.storagemover/storagemovers/projects","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:55.7733467Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:43:01.8045415Z"},"properties":{"provisioningState":"Succeeded","description":"ProjectDesc2"}}' @@ -328,13 +328,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003?api-version=2025-07-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2024-07-01&t=638529973840857739&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=omqH0pC0aMJU8HsY7D-gw6mNAAApOLJNy-YxL21jmRfeSxnYfU7aPq7AmbuwK80_6mbp5k8agfU3qy0grNmhRu9-urtxA6mPK61yM4XhK7ILU6Iu1kLEsjta4a6cpem0gLRvPzMPt0L99wv0ELFXF4CyesdBkVmJZAlJbulG3Uqb4C1g6OYXMQUsfPeBIbYMNjpY_8T7GI0V5Q5SMrjAsf6qm3rQYP9a8Oox1b3vJp0Ws2eVj8zyCmtDWxioNGIT9QtujAgdm1zGmNO1XUrDohefQVYi2SafOxXinWEkvP3Y8nNsYJc0HfzwM-TnatbSC_hu8YK8yWcv5GtXSTbWwA&h=tiR5Y7DYRJA7s7LUpczkcPWSX7U855lip68ltQQ90Rc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2025-07-01&t=638529973840857739&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=omqH0pC0aMJU8HsY7D-gw6mNAAApOLJNy-YxL21jmRfeSxnYfU7aPq7AmbuwK80_6mbp5k8agfU3qy0grNmhRu9-urtxA6mPK61yM4XhK7ILU6Iu1kLEsjta4a6cpem0gLRvPzMPt0L99wv0ELFXF4CyesdBkVmJZAlJbulG3Uqb4C1g6OYXMQUsfPeBIbYMNjpY_8T7GI0V5Q5SMrjAsf6qm3rQYP9a8Oox1b3vJp0Ws2eVj8zyCmtDWxioNGIT9QtujAgdm1zGmNO1XUrDohefQVYi2SafOxXinWEkvP3Y8nNsYJc0HfzwM-TnatbSC_hu8YK8yWcv5GtXSTbWwA&h=tiR5Y7DYRJA7s7LUpczkcPWSX7U855lip68ltQQ90Rc cache-control: - no-cache content-length: @@ -348,7 +348,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2024-07-01&t=638529973841013991&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=uNpA7dMx20LBsjVOCWYLDoIQfS38Igv9ZknIIcxlWZrIRhhVPAROsXWJlWwkUXbcZ07sTqHll1y_gLm8e6ToX2sf8bt_j98I5lGMJ0VWTp7enxG2L_KEGfxMeuMZjtUCkk-k8SgL15mi_DiX5ju8EEoph_ygIzs4qXKlKHO_80ncd6d7J-AgRK5BmSGCaoAEZqhRj8kLVVncFo6ZZiQRGjwKReFcSW0vb33Y9_hESKBUawAlVpqRnoPLA1QyNWbL5-4fQM9FFa1c4m-7Aw-L8d5DRUzYo-BP313nHdHdShkH9l4VYIuTD5QhypGoXu9cwSvitdDY21RZl7PcN3qYuw&h=IoXpfKPI_GP9sVUNQ64jv_2p_gb0sd2BlH703942J3s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2025-07-01&t=638529973841013991&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=uNpA7dMx20LBsjVOCWYLDoIQfS38Igv9ZknIIcxlWZrIRhhVPAROsXWJlWwkUXbcZ07sTqHll1y_gLm8e6ToX2sf8bt_j98I5lGMJ0VWTp7enxG2L_KEGfxMeuMZjtUCkk-k8SgL15mi_DiX5ju8EEoph_ygIzs4qXKlKHO_80ncd6d7J-AgRK5BmSGCaoAEZqhRj8kLVVncFo6ZZiQRGjwKReFcSW0vb33Y9_hESKBUawAlVpqRnoPLA1QyNWbL5-4fQM9FFa1c4m-7Aw-L8d5DRUzYo-BP313nHdHdShkH9l4VYIuTD5QhypGoXu9cwSvitdDY21RZl7PcN3qYuw&h=IoXpfKPI_GP9sVUNQ64jv_2p_gb0sd2BlH703942J3s pragma: - no-cache strict-transport-security: @@ -382,13 +382,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2024-07-01&t=638529973840857739&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=omqH0pC0aMJU8HsY7D-gw6mNAAApOLJNy-YxL21jmRfeSxnYfU7aPq7AmbuwK80_6mbp5k8agfU3qy0grNmhRu9-urtxA6mPK61yM4XhK7ILU6Iu1kLEsjta4a6cpem0gLRvPzMPt0L99wv0ELFXF4CyesdBkVmJZAlJbulG3Uqb4C1g6OYXMQUsfPeBIbYMNjpY_8T7GI0V5Q5SMrjAsf6qm3rQYP9a8Oox1b3vJp0Ws2eVj8zyCmtDWxioNGIT9QtujAgdm1zGmNO1XUrDohefQVYi2SafOxXinWEkvP3Y8nNsYJc0HfzwM-TnatbSC_hu8YK8yWcv5GtXSTbWwA&h=tiR5Y7DYRJA7s7LUpczkcPWSX7U855lip68ltQQ90Rc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2025-07-01&t=638529973840857739&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=omqH0pC0aMJU8HsY7D-gw6mNAAApOLJNy-YxL21jmRfeSxnYfU7aPq7AmbuwK80_6mbp5k8agfU3qy0grNmhRu9-urtxA6mPK61yM4XhK7ILU6Iu1kLEsjta4a6cpem0gLRvPzMPt0L99wv0ELFXF4CyesdBkVmJZAlJbulG3Uqb4C1g6OYXMQUsfPeBIbYMNjpY_8T7GI0V5Q5SMrjAsf6qm3rQYP9a8Oox1b3vJp0Ws2eVj8zyCmtDWxioNGIT9QtujAgdm1zGmNO1XUrDohefQVYi2SafOxXinWEkvP3Y8nNsYJc0HfzwM-TnatbSC_hu8YK8yWcv5GtXSTbWwA&h=tiR5Y7DYRJA7s7LUpczkcPWSX7U855lip68ltQQ90Rc response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E","name":"928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003","status":"Deleting","startTime":"2024-06-03T07:43:03.9235233Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2024-07-01&t=638529973844763944&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=TzKottDlvcTv57moZv_fTPkblId4hpjJWHDiF_uvRX_qZiv91CibagYWacqwOujJpNsYLp0mOlYPv7LNDt6yiJijZzjV7O6RSzmOdv6NW4H0nYZgYBrSeiUnl64rwBQP0aGD1cnQ47nlALLOZ-Ikp6SfnYam5W_cmqvYkuwnArcv4iqQYasDhfJABxva9IqoBlgYXUs2tN2FQ1O6tN9fJejTSimRZVpjODMI80FCB8MnnKIqH6UM3UgH8icMDakG7aBeKI032wEcPHH47eZ6VXP7bcjLxqin0jAtxazA3RLM6vHGfD3YlQDTBzc3q5b3n34ZYwCFQ94Yg7t_JaD0OA&h=vB3cMoPcJlvpOVcR5KezSBfkhCBqSrgK9ZHMBT6TOfI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2025-07-01&t=638529973844763944&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=TzKottDlvcTv57moZv_fTPkblId4hpjJWHDiF_uvRX_qZiv91CibagYWacqwOujJpNsYLp0mOlYPv7LNDt6yiJijZzjV7O6RSzmOdv6NW4H0nYZgYBrSeiUnl64rwBQP0aGD1cnQ47nlALLOZ-Ikp6SfnYam5W_cmqvYkuwnArcv4iqQYasDhfJABxva9IqoBlgYXUs2tN2FQ1O6tN9fJejTSimRZVpjODMI80FCB8MnnKIqH6UM3UgH8icMDakG7aBeKI032wEcPHH47eZ6VXP7bcjLxqin0jAtxazA3RLM6vHGfD3YlQDTBzc3q5b3n34ZYwCFQ94Yg7t_JaD0OA&h=vB3cMoPcJlvpOVcR5KezSBfkhCBqSrgK9ZHMBT6TOfI cache-control: - no-cache content-length: @@ -402,7 +402,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2024-07-01&t=638529973844763944&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=TzKottDlvcTv57moZv_fTPkblId4hpjJWHDiF_uvRX_qZiv91CibagYWacqwOujJpNsYLp0mOlYPv7LNDt6yiJijZzjV7O6RSzmOdv6NW4H0nYZgYBrSeiUnl64rwBQP0aGD1cnQ47nlALLOZ-Ikp6SfnYam5W_cmqvYkuwnArcv4iqQYasDhfJABxva9IqoBlgYXUs2tN2FQ1O6tN9fJejTSimRZVpjODMI80FCB8MnnKIqH6UM3UgH8icMDakG7aBeKI032wEcPHH47eZ6VXP7bcjLxqin0jAtxazA3RLM6vHGfD3YlQDTBzc3q5b3n34ZYwCFQ94Yg7t_JaD0OA&h=vB3cMoPcJlvpOVcR5KezSBfkhCBqSrgK9ZHMBT6TOfI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2025-07-01&t=638529973844763944&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=TzKottDlvcTv57moZv_fTPkblId4hpjJWHDiF_uvRX_qZiv91CibagYWacqwOujJpNsYLp0mOlYPv7LNDt6yiJijZzjV7O6RSzmOdv6NW4H0nYZgYBrSeiUnl64rwBQP0aGD1cnQ47nlALLOZ-Ikp6SfnYam5W_cmqvYkuwnArcv4iqQYasDhfJABxva9IqoBlgYXUs2tN2FQ1O6tN9fJejTSimRZVpjODMI80FCB8MnnKIqH6UM3UgH8icMDakG7aBeKI032wEcPHH47eZ6VXP7bcjLxqin0jAtxazA3RLM6vHGfD3YlQDTBzc3q5b3n34ZYwCFQ94Yg7t_JaD0OA&h=vB3cMoPcJlvpOVcR5KezSBfkhCBqSrgK9ZHMBT6TOfI pragma: - no-cache strict-transport-security: @@ -432,7 +432,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2024-07-01&t=638529973840857739&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=omqH0pC0aMJU8HsY7D-gw6mNAAApOLJNy-YxL21jmRfeSxnYfU7aPq7AmbuwK80_6mbp5k8agfU3qy0grNmhRu9-urtxA6mPK61yM4XhK7ILU6Iu1kLEsjta4a6cpem0gLRvPzMPt0L99wv0ELFXF4CyesdBkVmJZAlJbulG3Uqb4C1g6OYXMQUsfPeBIbYMNjpY_8T7GI0V5Q5SMrjAsf6qm3rQYP9a8Oox1b3vJp0Ws2eVj8zyCmtDWxioNGIT9QtujAgdm1zGmNO1XUrDohefQVYi2SafOxXinWEkvP3Y8nNsYJc0HfzwM-TnatbSC_hu8YK8yWcv5GtXSTbWwA&h=tiR5Y7DYRJA7s7LUpczkcPWSX7U855lip68ltQQ90Rc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2025-07-01&t=638529973840857739&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=omqH0pC0aMJU8HsY7D-gw6mNAAApOLJNy-YxL21jmRfeSxnYfU7aPq7AmbuwK80_6mbp5k8agfU3qy0grNmhRu9-urtxA6mPK61yM4XhK7ILU6Iu1kLEsjta4a6cpem0gLRvPzMPt0L99wv0ELFXF4CyesdBkVmJZAlJbulG3Uqb4C1g6OYXMQUsfPeBIbYMNjpY_8T7GI0V5Q5SMrjAsf6qm3rQYP9a8Oox1b3vJp0Ws2eVj8zyCmtDWxioNGIT9QtujAgdm1zGmNO1XUrDohefQVYi2SafOxXinWEkvP3Y8nNsYJc0HfzwM-TnatbSC_hu8YK8yWcv5GtXSTbWwA&h=tiR5Y7DYRJA7s7LUpczkcPWSX7U855lip68ltQQ90Rc response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E","name":"928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003","status":"Succeeded","startTime":"2024-06-03T07:43:03.9235233Z","properties":null}' @@ -478,7 +478,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2024-07-01&t=638529973841013991&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=uNpA7dMx20LBsjVOCWYLDoIQfS38Igv9ZknIIcxlWZrIRhhVPAROsXWJlWwkUXbcZ07sTqHll1y_gLm8e6ToX2sf8bt_j98I5lGMJ0VWTp7enxG2L_KEGfxMeuMZjtUCkk-k8SgL15mi_DiX5ju8EEoph_ygIzs4qXKlKHO_80ncd6d7J-AgRK5BmSGCaoAEZqhRj8kLVVncFo6ZZiQRGjwKReFcSW0vb33Y9_hESKBUawAlVpqRnoPLA1QyNWbL5-4fQM9FFa1c4m-7Aw-L8d5DRUzYo-BP313nHdHdShkH9l4VYIuTD5QhypGoXu9cwSvitdDY21RZl7PcN3qYuw&h=IoXpfKPI_GP9sVUNQ64jv_2p_gb0sd2BlH703942J3s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E?api-version=2025-07-01&t=638529973841013991&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=uNpA7dMx20LBsjVOCWYLDoIQfS38Igv9ZknIIcxlWZrIRhhVPAROsXWJlWwkUXbcZ07sTqHll1y_gLm8e6ToX2sf8bt_j98I5lGMJ0VWTp7enxG2L_KEGfxMeuMZjtUCkk-k8SgL15mi_DiX5ju8EEoph_ygIzs4qXKlKHO_80ncd6d7J-AgRK5BmSGCaoAEZqhRj8kLVVncFo6ZZiQRGjwKReFcSW0vb33Y9_hESKBUawAlVpqRnoPLA1QyNWbL5-4fQM9FFa1c4m-7Aw-L8d5DRUzYo-BP313nHdHdShkH9l4VYIuTD5QhypGoXu9cwSvitdDY21RZl7PcN3qYuw&h=IoXpfKPI_GP9sVUNQ64jv_2p_gb0sd2BlH703942J3s response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E","name":"928da172-0b7e-4066-b715-ea4d569457ce*10618E2B81286D6C4CB1D451134A42088534F462841AB31B1AE3675D13F9EA3E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects/project000003","status":"Succeeded","startTime":"2024-06-03T07:43:03.9235233Z","properties":null}' @@ -524,7 +524,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002/projects?api-version=2025-07-01 response: body: string: '{"value":[]}' diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_scenarios.yaml index 6966424808e..7225f25d50a 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_scenarios.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","name":"storage-mover000002","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:53.6483697Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:53.6483697Z"},"properties":{"description":"ExampleDesc","provisioningState":"Succeeded"}}' @@ -72,7 +72,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","name":"storage-mover000002","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:53.6483697Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:53.6483697Z"},"properties":{"description":"ExampleDesc","provisioningState":"Succeeded"}}' @@ -118,7 +118,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers?api-version=2025-07-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","name":"storage-mover000002","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:53.6483697Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:53.6483697Z"},"properties":{"description":"ExampleDesc","provisioningState":"Succeeded"}}]}' @@ -162,7 +162,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","name":"storage-mover000002","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key1":"value1"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:53.6483697Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:42:53.6483697Z"},"properties":{"description":"ExampleDesc","provisioningState":"Succeeded"}}' @@ -213,7 +213,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","name":"storage-mover000002","type":"microsoft.storagemover/storagemovers","location":"eastus2euap","tags":{"key2":"value2"},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-06-03T07:42:53.6483697Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-03T07:43:00.6303823Z"},"properties":{"description":"ExampleDesc2","provisioningState":"Succeeded"}}' @@ -267,13 +267,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002?api-version=2025-07-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2024-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2025-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk cache-control: - no-cache content-length: @@ -287,7 +287,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2024-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2025-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk pragma: - no-cache strict-transport-security: @@ -321,13 +321,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2024-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2025-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2","name":"f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","status":"Deleting","startTime":"2024-06-03T07:43:02.7898155Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2024-07-01&t=638529973833537436&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=Rq8XN6LpHuxGaDkXxuVTDcRu6MgBXKZ-jSVVGVglKlHjUKuJ0fUEopwtLCh-ryaz5MJJy6GACBTV9rB-t1VgoNsl0AoTiJU7JS9_cgoUlGE7uhRF9Z3KFg0XqmdgDe0u4PJQ_aYIr0CjpBPFBCWvitDuqX_tksV8evnQFHFh1JzGI81f1jqhn4IfcoEa9CLbV4gWmSEaOpBjfQOq60qKkaR5iJ0YyngwXZE-IMlMk_DZOk2guJbQU8BJGF-jhUmM-e8f97BnzCQhoGUXWDLED4drGp4WX9x0Q3jORifD2pPZi_WpsmqOu7-2hWF8HcIziY8ODfksjoCp3FFZuFZTRg&h=GwD9TvMVBi0fzAXpiKVfM4yPGt-IMyakt7jHZxZAnYk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2025-07-01&t=638529973833537436&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=Rq8XN6LpHuxGaDkXxuVTDcRu6MgBXKZ-jSVVGVglKlHjUKuJ0fUEopwtLCh-ryaz5MJJy6GACBTV9rB-t1VgoNsl0AoTiJU7JS9_cgoUlGE7uhRF9Z3KFg0XqmdgDe0u4PJQ_aYIr0CjpBPFBCWvitDuqX_tksV8evnQFHFh1JzGI81f1jqhn4IfcoEa9CLbV4gWmSEaOpBjfQOq60qKkaR5iJ0YyngwXZE-IMlMk_DZOk2guJbQU8BJGF-jhUmM-e8f97BnzCQhoGUXWDLED4drGp4WX9x0Q3jORifD2pPZi_WpsmqOu7-2hWF8HcIziY8ODfksjoCp3FFZuFZTRg&h=GwD9TvMVBi0fzAXpiKVfM4yPGt-IMyakt7jHZxZAnYk cache-control: - no-cache content-length: @@ -341,7 +341,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2024-07-01&t=638529973833537436&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=Rq8XN6LpHuxGaDkXxuVTDcRu6MgBXKZ-jSVVGVglKlHjUKuJ0fUEopwtLCh-ryaz5MJJy6GACBTV9rB-t1VgoNsl0AoTiJU7JS9_cgoUlGE7uhRF9Z3KFg0XqmdgDe0u4PJQ_aYIr0CjpBPFBCWvitDuqX_tksV8evnQFHFh1JzGI81f1jqhn4IfcoEa9CLbV4gWmSEaOpBjfQOq60qKkaR5iJ0YyngwXZE-IMlMk_DZOk2guJbQU8BJGF-jhUmM-e8f97BnzCQhoGUXWDLED4drGp4WX9x0Q3jORifD2pPZi_WpsmqOu7-2hWF8HcIziY8ODfksjoCp3FFZuFZTRg&h=GwD9TvMVBi0fzAXpiKVfM4yPGt-IMyakt7jHZxZAnYk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/eastus2euap/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2025-07-01&t=638529973833537436&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=Rq8XN6LpHuxGaDkXxuVTDcRu6MgBXKZ-jSVVGVglKlHjUKuJ0fUEopwtLCh-ryaz5MJJy6GACBTV9rB-t1VgoNsl0AoTiJU7JS9_cgoUlGE7uhRF9Z3KFg0XqmdgDe0u4PJQ_aYIr0CjpBPFBCWvitDuqX_tksV8evnQFHFh1JzGI81f1jqhn4IfcoEa9CLbV4gWmSEaOpBjfQOq60qKkaR5iJ0YyngwXZE-IMlMk_DZOk2guJbQU8BJGF-jhUmM-e8f97BnzCQhoGUXWDLED4drGp4WX9x0Q3jORifD2pPZi_WpsmqOu7-2hWF8HcIziY8ODfksjoCp3FFZuFZTRg&h=GwD9TvMVBi0fzAXpiKVfM4yPGt-IMyakt7jHZxZAnYk pragma: - no-cache strict-transport-security: @@ -371,7 +371,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2024-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2025-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2","name":"f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","status":"Succeeded","startTime":"2024-06-03T07:43:02.7898155Z","properties":null}' @@ -417,7 +417,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2024-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2?api-version=2025-07-01&t=638529973829474815&c=MIIHhjCCBm6gAwIBAgITHgSkDkdoyksh1C2m6AAABKQORzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNTI4MTIzNTIwWhcNMjQwODI2MTIzNTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMgSeni2v5wwgfRLk6n84sOQyIPTBjMsa_z8Ex2NXvonwqGzg9C4XYEuX6JVE4vUf5kkuRJpwd-9npGVPoaO4cYNaJffI-OtXVAZ9m73eHjsyLEChHDJjTuEowF3FEDeWDOcUn3QlD3FbdoJ67MgoZLtAahC2XwLI79Oc5S-DzLpi_G7lgI6tpZpagITKdEzrbeVszoAlNq2Ik061wMKBXJ0ry2doZ5urg0f4QKEqqJJgF_AO1DWeFxVFL_C0f5ZmQS808pSOz0aKa9OU0ybHKMuoSry1ROPULsSIKaKokFttWBDLr-b102PFw6UCLH5kwLqk1dIlc2sZadBAuO_Ip0CAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFGKNJ47uAi44ue40s2gk3LxhLZxfMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQBMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEANFF6vPwrt0drtuHK8wVpzr6T6GUmQqx_Oe-Yf4OhMqaGkU4ocnJTgxfpjV_PHlrFleVxJvng09NmAQ_3hNxitllz0L_WlztaaaEYqFnCNs3bjoxWGtAZ8rC8mOglTXtk4WzUl_0CZJ_Ufoz4BtSdezGmva4iNvda6kTZD8pa2xtJVwj5lJp2GdC3aH-sYSRLZrQYd_tSVxOoLBRbCvnRI0JKPZp7aVmATdTEcFijXyKDAmfzLWdzj1BPBt0DtVk5l5gcqneKnan6ZQQcEp35vHAGMqrUwnKF1DJOvx9sU39_sVuel97MVgmQklU9JkUpmSidzD1XTgq_HXbgm7AxCA&s=vqziM6kbfXhl9oRHCdw0qLbr5YEu6wfz6QSSBY7HRlKcywlTVD4gF1QOWcO3-2lx7h4JF1uUM1dD8_PqPJRG1Ma9EL6rLUHNRaWkKtfKaF8x0qpkV7nesttHme6QtoadB_ThrVD38v7OKTDh0cuZyLiN1Du0Y3g89TKy1GZDVRjTydePTR8G3nFAPPaJ9ym7VNEmsZrF8G1Vtd2_3UQHJbOZBiHbuuieRNWuoTAAbrverXQDhueRjOovzZoMgfcMRpE62l2cZCa2Hm12Dby2Ww8P3pSfkeGeT3jMLJXC_Z2Zi_xBMdoPUbeBSnokP8gukyTvm4AJUVX7KfWuPd2kWA&h=1dGNRpfbxo3rELjE9DrfbxvxJtOcG9R_PApdZAFithk response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StorageMover/locations/EASTUS2EUAP/operationStatuses/f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2","name":"f62ed88d-33fa-40c4-96b1-21b77adeaa13*3F997326EE1B7004097BCACCEC416EAE6D4D8DB5DB9940981AA6B734D0C3CEA2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000002","status":"Succeeded","startTime":"2024-06-03T07:43:02.7898155Z","properties":null}' @@ -463,7 +463,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers?api-version=2025-07-01 response: body: string: '{"value":[]}' From 31a0ef72d5eaa3b7259035473788c6cca941b25f Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 14:19:40 +0530 Subject: [PATCH 16/20] Fixed failing tests --- ...test_storage_mover_endpoint_scenarios.yaml | 92 +++++++++---------- ...torage_mover_job_definition_scenarios.yaml | 42 ++++----- .../tests/latest/test_storage_mover.py | 6 +- 3 files changed, 70 insertions(+), 70 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml index f3a72ab6cf6..c223f278515 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml @@ -17,7 +17,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2023-05-01&$expand=kerb + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2024-01-01&$expand=kerb response: body: string: '{"keys":[{"creationTime":"2024-07-02T09:22:48.9207673Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-07-02T09:22:48.9207673Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -63,7 +63,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2024-01-01 response: body: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-07-02T09:22:48.9207673Z","key2":"2024-07-02T09:22:48.9207673Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-07-02T09:22:50.3114691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-07-02T09:22:50.3114691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-07-02T09:22:48.7957757Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' @@ -671,7 +671,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2024-07-02T09:22:38Z","module":"storage-mover","DateCreated":"2024-07-02T09:22:44Z","Creator":"zhiyihuang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' @@ -827,7 +827,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n @@ -878,7 +878,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -981,7 +981,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n @@ -3280,7 +3280,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n @@ -3331,7 +3331,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -3393,7 +3393,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n @@ -3444,7 +3444,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -3509,7 +3509,7 @@ interactions: {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG"}}}, - {"apiVersion": "2024-03-01", "type": "Microsoft.Compute/virtualMachines", "name": + {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "vm000009", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000009VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_D4s_v3"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic", @@ -3540,13 +3540,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","name":"vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"931673041568542476","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-07-02T09:23:58.6579238Z","duration":"PT0.0004225S","correlationId":"4cea310b-61bf-4182-a192-b03918c952ac","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000009VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000009PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000009"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2/operationStatuses/08584816946486801966?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2/operationStatuses/08584816946486801966?api-version=2024-11-01 cache-control: - no-cache content-length: @@ -3588,7 +3588,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2024-11-01 response: body: string: '{"status":"Running"}' @@ -3630,7 +3630,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2024-11-01 response: body: string: '{"status":"Running"}' @@ -3672,7 +3672,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816946486801966?api-version=2024-11-01 response: body: string: '{"status":"Succeeded"}' @@ -3714,7 +3714,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","name":"vm_deploy_Lu1uNEJEjGx6LPebPqxPyLXs7sQT5Kb2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"931673041568542476","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-07-02T09:24:41.3604691Z","duration":"PT42.7029678S","correlationId":"4cea310b-61bf-4182-a192-b03918c952ac","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm000009VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000009PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000009VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000009"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000009VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000009NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000009PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET"}]}}' @@ -3756,7 +3756,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009?$expand=instanceView&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009?$expand=instanceView&api-version=2024-11-01 response: body: string: "{\r\n \"name\": \"vm000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000009\",\r\n @@ -4158,7 +4158,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_storage_mover_endpoint_scenarios","date":"2024-07-02T09:22:38Z","module":"storage-mover","DateCreated":"2024-07-02T09:22:44Z","Creator":"zhiyihuang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' @@ -4314,7 +4314,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n @@ -4365,7 +4365,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -4474,7 +4474,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n @@ -6773,7 +6773,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n @@ -6824,7 +6824,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -6886,7 +6886,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202406140\",\r\n @@ -6937,7 +6937,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202406140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -6998,7 +6998,7 @@ interactions: {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm000009VNET/subnets/vm000009Subnet"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG"}}}, - {"apiVersion": "2024-03-01", "type": "Microsoft.Compute/virtualMachines", "name": + {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "vm000010", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000010VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_D4s_v3"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic", @@ -7029,13 +7029,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","name":"vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11142081930931402277","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-07-02T09:25:27.7553406Z","duration":"PT0.000102S","correlationId":"a4f45bcb-dcdf-41dd-aa7e-4c556c3d6d97","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000010PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000010"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2/operationStatuses/08584816945586504362?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2/operationStatuses/08584816945586504362?api-version=2024-11-01 cache-control: - no-cache content-length: @@ -7077,7 +7077,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2024-11-01 response: body: string: '{"status":"Running"}' @@ -7119,7 +7119,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2024-11-01 response: body: string: '{"status":"Running"}' @@ -7161,7 +7161,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584816945586504362?api-version=2024-11-01 response: body: string: '{"status":"Succeeded"}' @@ -7203,7 +7203,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","name":"vm_deploy_MLLDgfMbfTffNV2S5gaS6itswZij7Iv2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11142081930931402277","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-07-02T09:26:12.6094225Z","duration":"PT44.8541839S","correlationId":"a4f45bcb-dcdf-41dd-aa7e-4c556c3d6d97","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000010PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000010VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000010"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000010VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000010NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000010PublicIP"}]}}' @@ -7245,7 +7245,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010?$expand=instanceView&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010?$expand=instanceView&api-version=2024-11-01 response: body: string: "{\r\n \"name\": \"vm000010\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000010\",\r\n @@ -7637,7 +7637,7 @@ interactions: message: OK - request: body: '{"properties": {"description": "endpointNFSFileShareDesc", "endpointType": - "AzureStorageNfsFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": + "AzureStorageNfsFileShare", "fileShareName": "fileshare000011", "storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' headers: Accept: @@ -7657,10 +7657,10 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -7713,10 +7713,10 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -7765,10 +7765,10 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:03.3434811Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -7803,7 +7803,7 @@ interactions: message: OK - request: body: '{"properties": {"description": "endpointNFSFileShareDescUpdate", "endpointType": - "AzureStorageNfsFileShare", "fileShareName": "fileshare000014", "storageAccountResourceId": + "AzureStorageNfsFileShare", "fileShareName": "fileshare000011", "storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' headers: Accept: @@ -7823,10 +7823,10 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000007","name":"endpoint_nfs_file_share000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000014","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -7882,7 +7882,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:10.9864383Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs000007","name":"endpoint_nfs000007","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:25:06.0817301Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:25:10.9864383Z"},"properties":{"host":"40.89.93.185","nfsVersion":"NFSv4","export":"exportfolder","endpointType":"NfsMount","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache @@ -7976,7 +7976,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_container000005","name":"endpoint_container000005","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:24.2952812Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:30.0485829Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","blobContainerName":"container000004","endpointType":"AzureStorageBlobContainer","description":"endpointDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_file_share000006","name":"endpoint_file_share000006","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:23:33.5903356Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:23:38.7954218Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageSmbFileShare","description":"endpointFileShareDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_smb000008","name":"endpoint_smb000008","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2024-07-02T09:26:35.1096863Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-02T09:26:40.3128171Z"},"properties":{"host":"40.89.111.31","shareName":"smbshare000012","credentials":{"type":"AzureKeyVaultSmb"},"endpointType":"SmbMount","description":"endpointSmbDescUpdate","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-08T17:13:03.3434811Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-08T17:13:05.8060148Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDescUpdate","provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_job_definition_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_job_definition_scenarios.yaml index d710dd17b5b..3de3ef3e575 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_job_definition_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_job_definition_scenarios.yaml @@ -71,7 +71,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2","name":"test-storagemover-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"DateCreated":"2024-06-03T07:53:43Z","Creator":"zhiyihuang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' @@ -117,7 +117,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2024-01-01 response: body: string: '{"nameAvailable":true}' @@ -168,7 +168,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2?api-version=2024-01-01 response: body: string: '' @@ -314,7 +314,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2/listKeys?api-version=2023-05-01&$expand=kerb + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2/listKeys?api-version=2024-01-01&$expand=kerb response: body: string: '{"keys":[{"creationTime":"2024-06-03T08:24:53.9978560Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-06-03T08:24:53.9978560Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -360,7 +360,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2?api-version=2024-01-01 response: body: string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Storage/storageAccounts/testjobdefinitionsa2","name":"testjobdefinitionsa2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2024-06-03T08:24:53.9978560Z","key2":"2024-06-03T08:24:53.9978560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-06-03T08:24:54.0759839Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-06-03T08:24:54.0759839Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2024-06-03T08:24:53.8884567Z","primaryEndpoints":{"dfs":"https://testjobdefinitionsa2.dfs.core.windows.net/","web":"https://testjobdefinitionsa2.z3.web.core.windows.net/","blob":"https://testjobdefinitionsa2.blob.core.windows.net/","queue":"https://testjobdefinitionsa2.queue.core.windows.net/","table":"https://testjobdefinitionsa2.table.core.windows.net/","file":"https://testjobdefinitionsa2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testjobdefinitionsa2-secondary.dfs.core.windows.net/","web":"https://testjobdefinitionsa2-secondary.z3.web.core.windows.net/","blob":"https://testjobdefinitionsa2-secondary.blob.core.windows.net/","queue":"https://testjobdefinitionsa2-secondary.queue.core.windows.net/","table":"https://testjobdefinitionsa2-secondary.table.core.windows.net/"}}}' @@ -446,7 +446,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2","name":"test-storagemover-rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"DateCreated":"2024-06-03T07:53:43Z","Creator":"zhiyihuang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' @@ -602,7 +602,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202405140\",\r\n @@ -653,7 +653,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202405140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202405140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -756,7 +756,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/vmSizes?api-version=2024-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n @@ -3055,7 +3055,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202405140\",\r\n @@ -3106,7 +3106,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202405140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202405140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -3168,7 +3168,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: string: "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"22.04.202405140\",\r\n @@ -3219,7 +3219,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202405140?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2euap/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202405140?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -3284,7 +3284,7 @@ interactions: {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/virtualNetworks/sourcevmVNET/subnets/sourcevmSubnet"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/publicIPAddresses/sourcevmPublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkSecurityGroups/sourcevmNSG"}}}, - {"apiVersion": "2024-03-01", "type": "Microsoft.Compute/virtualMachines", "name": + {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "sourcevm", "location": "eastus2euap", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/sourcevmVMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_D4s_v3"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkInterfaces/sourcevmVMNic", @@ -3315,13 +3315,13 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/vm_deploy_9hcu5RVxiLaehkfbQisqQeYrEg5zkW1E","name":"vm_deploy_9hcu5RVxiLaehkfbQisqQeYrEg5zkW1E","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10236345664603101249","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-06-03T08:25:37.8757779Z","duration":"PT0.0002857S","correlationId":"44c1c6e7-5fe5-4259-848a-91d729bb6c47","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/virtualNetworks/sourcevmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"sourcevmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkSecurityGroups/sourcevmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"sourcevmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/publicIPAddresses/sourcevmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"sourcevmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkInterfaces/sourcevmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"sourcevmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkInterfaces/sourcevmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"sourcevmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Compute/virtualMachines/sourcevm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"sourcevm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/vm_deploy_9hcu5RVxiLaehkfbQisqQeYrEg5zkW1E/operationStatuses/08584842037485342107?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/vm_deploy_9hcu5RVxiLaehkfbQisqQeYrEg5zkW1E/operationStatuses/08584842037485342107?api-version=2024-11-01 cache-control: - no-cache content-length: @@ -3361,7 +3361,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584842037485342107?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584842037485342107?api-version=2024-11-01 response: body: string: '{"status":"Running"}' @@ -3403,7 +3403,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584842037485342107?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584842037485342107?api-version=2024-11-01 response: body: string: '{"status":"Running"}' @@ -3445,7 +3445,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584842037485342107?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584842037485342107?api-version=2024-11-01 response: body: string: '{"status":"Succeeded"}' @@ -3487,7 +3487,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Resources/deployments/vm_deploy_9hcu5RVxiLaehkfbQisqQeYrEg5zkW1E","name":"vm_deploy_9hcu5RVxiLaehkfbQisqQeYrEg5zkW1E","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10236345664603101249","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-06-03T08:26:18.7617632Z","duration":"PT40.886271S","correlationId":"44c1c6e7-5fe5-4259-848a-91d729bb6c47","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2euap"]},{"resourceType":"networkSecurityGroups","locations":["eastus2euap"]},{"resourceType":"publicIPAddresses","locations":["eastus2euap"]},{"resourceType":"networkInterfaces","locations":["eastus2euap"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2euap"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/virtualNetworks/sourcevmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"sourcevmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkSecurityGroups/sourcevmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"sourcevmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/publicIPAddresses/sourcevmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"sourcevmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkInterfaces/sourcevmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"sourcevmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkInterfaces/sourcevmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"sourcevmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Compute/virtualMachines/sourcevm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"sourcevm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Compute/virtualMachines/sourcevm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkInterfaces/sourcevmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/networkSecurityGroups/sourcevmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/publicIPAddresses/sourcevmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Network/virtualNetworks/sourcevmVNET"}]}}' @@ -3529,7 +3529,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 (PIP) azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Compute/virtualMachines/sourcevm?$expand=instanceView&api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Compute/virtualMachines/sourcevm?$expand=instanceView&api-version=2024-11-01 response: body: string: "{\r\n \"name\": \"sourcevm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-storagemover-rg2/providers/Microsoft.Compute/virtualMachines/sourcevm\",\r\n diff --git a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py index f3208a23278..0108ce6b244 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py +++ b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py @@ -99,15 +99,15 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) '-otsv'.format(storage_account, resource_group)).output.strip(), "endpoint_container": self.create_random_name('endpoint_container', 32), "endpoint_file_share": self.create_random_name('endpoint_file_share', 32), - "endpoint_nfs_file_share": self.create_random_name('endpoint_nfs_file_share', 40), - "multi_cloud_connector": self.create_random_name('multi_cloud_connector', 40), - "endpoint_multi_cloud_connector": self.create_random_name('endpoint_multi_cloud_connector', 40), "endpoint_nfs": self.create_random_name('endpoint_nfs', 32), "endpoint_smb": self.create_random_name('endpoint_smb', 32), "vm_nfs_name": self.create_random_name('vm', 24), "vm_smb_name": self.create_random_name('vm', 24), "file_share_name": self.create_random_name('fileshare', 24), "smb_share_name": self.create_random_name('smbshare', 24), + "endpoint_nfs_file_share": self.create_random_name('endpoint_nfs_file_share', 40), + "multi_cloud_connector": self.create_random_name('multi_cloud_connector', 40), + "endpoint_multi_cloud_connector": self.create_random_name('endpoint_multi_cloud_connector', 40), }) self.cmd('az storage-mover create -g {rg} -n {mover_name} -l eastus2euap ' '--tags {{key1:value1}} --description MoverDesc') From 0beb16acaf45afde362b1196f49534ddc3bfea29 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 15:19:19 +0530 Subject: [PATCH 17/20] fixed CI issues --- .../azext_storage_mover/_help.py | 20 +++++++++++++++++++ .../tests/latest/test_storage_mover.py | 14 ++++++++++++- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/src/storage-mover/azext_storage_mover/_help.py b/src/storage-mover/azext_storage_mover/_help.py index 94a316542bb..ef7ce7a2f60 100644 --- a/src/storage-mover/azext_storage_mover/_help.py +++ b/src/storage-mover/azext_storage_mover/_help.py @@ -134,3 +134,23 @@ az storage-mover endpoint update-for-multi-cloud-connector -g "rg" --storage-mover-name "mover_name" -n "endpoint_multi_cloud_connector" --description endpointMultiCloudConnectorDescUpdate """ + +helps['storage-mover endpoint identity assign'] = """ +type: command +short-summary: Assigns a managed identity to an Endpoint resource. +examples: + - name: endpoint identity assign + text: > + az storage-mover endpoint identity assign -g "rg" --storage-mover-name "mover_name" -n "endpoint_nfs_file_share" + --mi-system-assigned +""" + +helps['storage-mover endpoint identity remove'] = """" +type: command +short-summary: Removes the managed identity from an Endpoint resource. +examples: + - name: endpoint identity remove + text: > + az storage-mover endpoint identity remove -g "rg" --storage-mover-name "mover_name" -n "endpoint_nfs_file_share" + --mi-system-assigned +""" diff --git a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py index 0108ce6b244..2a43a85d7bd 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py +++ b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py @@ -165,13 +165,25 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) JMESPathCheck('properties.storageAccountResourceId', self.kwargs.get('account_id', '')), JMESPathCheck('properties.description', "endpointNFSFileShareDesc"), ]) + + self.cmd('az storage-mover endpoint identity assign -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs_file_share} ' + ' --mi-system-assigned') + + self.cmd('az storage-mover endpoint identity show -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs_file_share} ' + ' --mi-system-assigned', + checks=[JMESPathCheck('type', "SystemAssigned"), + JMESPathCheckExists('principalId')]) + + self.cmd('az storage-mover endpoint identity remove -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs_file_share} ' + ' --mi-system-assigned') # update for storage nfs file share self.cmd('az storage-mover endpoint update-for-storage-nfs-file-share -g {rg} ' '--storage-mover-name {mover_name} ' '-n {endpoint_nfs_file_share} --description endpointNFSFileShareDescUpdate', checks=[JMESPathCheck('name', self.kwargs.get('endpoint_nfs_file_share', '')), - JMESPathCheck('properties.description', "endpointNFSFileShareDescUpdate")]) + JMESPathCheck('properties.description', "endpointNFSFileShareDescUpdate"), + JMESPathCheck('identity.type', None)]) # create for nfs mount vm_ip = self.cmd('az vm create -n {vm_nfs_name} -g {rg} --image Ubuntu2204 --size Standard_D4s_v3 --nsg-rule ' From d63e6cf9e98af8bf6e154e4e7bc461d59489bf7b Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 15:26:16 +0530 Subject: [PATCH 18/20] fixed linter issues --- src/storage-mover/azext_storage_mover/_help.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/_help.py b/src/storage-mover/azext_storage_mover/_help.py index ef7ce7a2f60..dd14aab7c19 100644 --- a/src/storage-mover/azext_storage_mover/_help.py +++ b/src/storage-mover/azext_storage_mover/_help.py @@ -144,13 +144,3 @@ az storage-mover endpoint identity assign -g "rg" --storage-mover-name "mover_name" -n "endpoint_nfs_file_share" --mi-system-assigned """ - -helps['storage-mover endpoint identity remove'] = """" -type: command -short-summary: Removes the managed identity from an Endpoint resource. -examples: - - name: endpoint identity remove - text: > - az storage-mover endpoint identity remove -g "rg" --storage-mover-name "mover_name" -n "endpoint_nfs_file_share" - --mi-system-assigned -""" From 2b546509227ce08cfed0ed3ca5294834ce555c7f Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 15:47:25 +0530 Subject: [PATCH 19/20] Added tests for endpoint identity commands --- ...test_storage_mover_endpoint_scenarios.yaml | 280 ++++++++++++++++++ .../tests/latest/test_storage_mover.py | 3 +- 2 files changed, 281 insertions(+), 2 deletions(-) diff --git a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml index c223f278515..c1abbad2212 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml +++ b/src/storage-mover/azext_storage_mover/tests/latest/recordings/test_storage_mover_endpoint_scenarios.yaml @@ -7749,6 +7749,286 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint identity assign + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n --mi-system-assigned + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-09T09:54:15.7458579Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-09T09:54:15.7458579Z"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '853' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 09 Sep 2025 09:54:17 GMT + etag: + - '"0100bda1-0000-3300-0000-68bff9470000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/131d90ed-61c8-4598-8013-96a118de16b5 + x-ms-providerhub-traffic: + - 'True' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A5488BDE5CD54C4A8E800A4B2537AD64 Ref B: PNQ231110909042 Ref C: 2025-09-09T09:54:17Z' + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "SystemAssigned"}, "properties": {"description": + "endpointNFSFileShareDesc", "endpointType": "AzureStorageNfsFileShare", "fileShareName": + "fileshare000011", "storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint identity assign + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g --storage-mover-name -n --mi-system-assigned + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-09T09:54:15.7458579Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-09T09:54:18.1907773Z"},"identity":{"principalId":"0589d75c-85b4-48c5-9328-88d283e0f1e9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 09 Sep 2025 09:54:19 GMT + etag: + - '"0100c3a1-0000-3300-0000-68bff94c0000"' + expires: + - '-1' + mise-correlation-id: + - 067a98a5-f9c0-44bb-ac8f-fd51d6414bae + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/9a40e73f-a5cc-4a2e-9184-3a56c2c6cf7b + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E7F914FECB5140C296F4D6D81DD53D55 Ref B: PNQ231110908036 Ref C: 2025-09-09T09:54:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint identity show + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-09T09:54:15.7458579Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-09T09:54:18.1907773Z"},"identity":{"principalId":"0589d75c-85b4-48c5-9328-88d283e0f1e9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 09 Sep 2025 09:54:20 GMT + etag: + - '"0100c3a1-0000-3300-0000-68bff94c0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/206cea0d-c9bf-48fe-9228-1a125688bc70 + x-ms-providerhub-traffic: + - 'True' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 974115B714794FC8B7B0EA6E82092023 Ref B: PNQ231110908036 Ref C: 2025-09-09T09:54:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint identity remove + Connection: + - keep-alive + ParameterSetName: + - -g --storage-mover-name -n --mi-system-assigned + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-09T09:54:15.7458579Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-09T09:54:18.1907773Z"},"identity":{"principalId":"0589d75c-85b4-48c5-9328-88d283e0f1e9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 09 Sep 2025 09:54:21 GMT + etag: + - '"0100c3a1-0000-3300-0000-68bff94c0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/7866f22b-3498-47fc-94ba-6124fa260b09 + x-ms-providerhub-traffic: + - 'True' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4ACB83C00D2B4B35A2B9A57AF60C253F Ref B: PNQ231110907023 Ref C: 2025-09-09T09:54:21Z' + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "None"}, "properties": {"description": "endpointNFSFileShareDesc", + "endpointType": "AzureStorageNfsFileShare", "fileShareName": "fileshare000011", + "storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage-mover endpoint identity remove + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -g --storage-mover-name -n --mi-system-assigned + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.StorageMover/storageMovers/storage-mover000003/endpoints/endpoint_nfs_file_share000013","name":"endpoint_nfs_file_share000013","type":"microsoft.storagemover/storagemovers/endpoints","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-09T09:54:15.7458579Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-09T09:54:22.0623359Z"},"identity":{"type":"None"},"properties":{"storageAccountResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","fileShareName":"fileshare000011","endpointType":"AzureStorageNfsFileShare","description":"endpointNFSFileShareDesc","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '880' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 09 Sep 2025 09:54:21 GMT + etag: + - '"0100c6a1-0000-3300-0000-68bff94e0000"' + expires: + - '-1' + mise-correlation-id: + - 618c298d-63b8-4794-bd26-328f43f23287 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1f58e503-3ee1-499f-9ec2-e509f6faa62c/centraluseuap/8e1b6ee6-8ceb-4f51-adf1-e2c8f7d1aada + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 62BE8DC79B55493396B2F8635065984E Ref B: PNQ231110909029 Ref C: 2025-09-09T09:54:21Z' + status: + code: 200 + message: OK - request: body: null headers: diff --git a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py index 2a43a85d7bd..ff0a4d8349e 100644 --- a/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py +++ b/src/storage-mover/azext_storage_mover/tests/latest/test_storage_mover.py @@ -169,8 +169,7 @@ def test_storage_mover_endpoint_scenarios(self, resource_group, storage_account) self.cmd('az storage-mover endpoint identity assign -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs_file_share} ' ' --mi-system-assigned') - self.cmd('az storage-mover endpoint identity show -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs_file_share} ' - ' --mi-system-assigned', + self.cmd('az storage-mover endpoint identity show -g {rg} --storage-mover-name {mover_name} -n {endpoint_nfs_file_share} ', checks=[JMESPathCheck('type', "SystemAssigned"), JMESPathCheckExists('principalId')]) From 68a32218b4e8f695d2d3b2e14968fe4cbc15bc41 Mon Sep 17 00:00:00 2001 From: KARTIK KHULLAR Date: Tue, 9 Sep 2025 16:01:48 +0530 Subject: [PATCH 20/20] AzDev Linter Fix --- .../aaz/latest/storage_mover/endpoint/identity/_assign.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_assign.py b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_assign.py index f85f4ac5468..8d170bd2247 100644 --- a/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_assign.py +++ b/src/storage-mover/azext_storage_mover/aaz/latest/storage_mover/endpoint/identity/_assign.py @@ -16,6 +16,9 @@ ) class Assign(AAZCommand): """Assign the user or system managed identities. + + :example: az storage-mover endpoint identity assign + --name myEndpoint --storage-mover-name myStorageMover --resource-group myResourceGroup --system-assigned """ _aaz_info = {